Skip to content

Commit

Permalink
WIP: Add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
afishhh committed May 3, 2024
1 parent 86d6ddf commit 481a927
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: run-tests
run-name: Run tests
on: [pull_request, push]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- run: nix develop --command bash -c "mkdir build && cd build && cmake .. && make -j 16"
- run: pytest

0 comments on commit 481a927

Please sign in to comment.