eagle/.gitea/workflows/build.yaml
Kodi Craft b12b382d94
All checks were successful
Build library & run tests / build (unix) (push) Successful in 17s
Build library & run tests / build (tcp) (push) Successful in 19s
Build library & run tests / docs (push) Successful in 22s
Try fixing doc upload action
2024-06-24 18:35:02 +02:00

30 lines
668 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 }}
docs:
runs-on: nix
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build docs
run: nix build .#doc.doc
- name: (Temporary) Upload docs
uses: actions/upload-artifact@v3
with:
name: docs
path: ./result-doc