Skip to content

init the project and see if the nix tests wil run #5

init the project and see if the nix tests wil run

init the project and see if the nix tests wil run #5

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v20
with:
nix_version: 2.21.0
- name: Run unit tests
run: |
nix-shell --command "python -m pytest"