2024-06-21 12:38:05 +02:00
|
|
|
name: Build library & run tests
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: nix
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Build & test
|
|
|
|
run: nix build
|
|
|
|
- name: Upload result
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2024-06-21 12:39:56 +02:00
|
|
|
name: result
|
2024-06-21 12:41:00 +02:00
|
|
|
path: result/*
|