this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 26 lines 445 B view raw
1name: CI 2 3on: 4 pull_request: 5 push: 6 branches: 7 - main 8 workflow_dispatch: 9 10jobs: 11 build: 12 name: Build 13 runs-on: ubuntu-latest 14 steps: 15 - uses: actions/checkout@v4 16 17 - uses: DeterminateSystems/nix-installer-action@v11 18 19 - run: nix -vL --show-trace flake check 20 21 - run: nix -vL --show-trace build 22 23 - uses: actions/upload-artifact@v4 24 with: 25 name: zmk_firmware 26 path: result