Skip to content

please work arc

please work arc #42

Workflow file for this run

name: 'CI'
on:
push:
branches: [master]
pull_request:
jobs:
run-tests:
runs-on: ubuntu-20.04
strategy:
matrix:
pythonversion: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: set up python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.pythonversion }}
- name: install dependencies
run: make install
- name: lint with flake8
run: make lint
- name: test with pytest
run: make coverage