Skip to content

problem with the git repository #140

problem with the git repository

problem with the git repository #140

Workflow file for this run

name: Test
on: [push]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Build executable
run: bash ./build.sh
- name: install dev dependencies
run: python3 -m pip install -r requirements_dev.txt
- name: run tests
run: pytest