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