Skip to content

bring back a hacky RF_ENABLED, lint #175

bring back a hacky RF_ENABLED, lint

bring back a hacky RF_ENABLED, lint #175

Workflow file for this run

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