Skip to content

Fix tests

Fix tests #199

Workflow file for this run

name: build
on:
pull_request:
branches: [ master, main ]
push:
branches: [ master, main ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox-gh-actions
- name: Run tox
run: tox