updated discord invite link #168
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v14 | |
with: | |
name: smk | |
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
- name: Setup | |
run: nix develop --command meson setup build | |
- name: Build | |
run: nix develop --command meson compile -C build | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: firmware | |
path: build/*.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@v14 | |
with: | |
name: smk | |
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
- name: Setup | |
run: nix develop --command meson setup build | |
- name: Lint | |
run: nix develop --command ninja -C build clang-format-check | |