Skip to content

Basic refactoring + unit tests #39

Basic refactoring + unit tests

Basic refactoring + unit tests #39

Workflow file for this run

name: Master
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
tox:
name: ${{ matrix.os }} py${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10"]
os: [ubuntu-20.04, ubuntu-latest, macos-11, macos-latest]
fail-fast: false
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Load cached venv
uses: actions/cache@v3
with:
path: .tox
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
- name: Install tox
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Test with tox
run: tox
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
if: ${{ matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest'}}
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}