Skip to content

Merge pull request #106 from rwijtvliet/develop #335

Merge pull request #106 from rwijtvliet/develop

Merge pull request #106 from rwijtvliet/develop #335

Workflow file for this run

name: CI-on-push
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ["ubuntu-latest"]
python-version: ["3.11"]
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install
run: |
pip install poetry
poetry install --with dev,test
- name: Run tests
run: |
poetry run python -B -m pytest -m "not only_on_pr"
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1