-
Notifications
You must be signed in to change notification settings - Fork 9
44 lines (41 loc) · 1.08 KB
/
build.yml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
on:
push: {}
pull_request:
types: [opened, reopened, synchronize]
name: Build
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: cachix/install-nix-action@v22
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: cachix/cachix-action@v12
with:
name: smk
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Build release
run: nix develop --command make all
- name: Archive code coverage results
uses: actions/upload-artifact@v4
with:
name: firmware
path: bin/*.hex
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: cachix/install-nix-action@v22
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: cachix/cachix-action@v12
with:
name: smk
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Build release
run: nix develop --command clang-format --dry-run -Werror -style=file -i src/**.{h,c}