2024-07-13 17:22:41 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
2024-07-23 05:35:09 +00:00
|
|
|
- uses: DeterminateSystems/nix-installer-action@v13
|
2024-07-13 17:22:41 +00:00
|
|
|
|
|
|
|
- run: nix -vL --show-trace flake check
|
|
|
|
|
|
|
|
- run: nix -vL --show-trace build
|
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: zmk_firmware
|
|
|
|
path: result
|