eagle/.gitea/workflows/build.yaml
Kodi Craft 5e498f5882
All checks were successful
Build library & run tests / build (tcp) (push) Successful in 16s
Build library & run tests / build (unix) (push) Successful in 16s
Run clippy through nix now
2024-06-23 01:50:36 +02:00

18 lines
374 B
YAML

name: Build library & run tests
on: [push]
jobs:
build:
strategy:
matrix:
feature:
- tcp
- unix
runs-on: nix
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run clippy
run: nix build .#clippy_${{ matrix.feature }}
- name: Build & test
run: nix build .#${{ matrix.feature }}