Skip to content

use whl in integration test #43

use whl in integration test

use whl in integration test #43

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
workflow_dispatch: null
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: nicknovitski/nix-develop@v1
- name: Lint with flake8
run: |
cd src
flake8 --version
flake8
- name: Test with pytest
run: |
cd src/tests
pytest --version
pytest