Skip to content

Merge pull request #305 from atmay/bugfix_read_config_before_running_… #66

Merge pull request #305 from atmay/bugfix_read_config_before_running_…

Merge pull request #305 from atmay/bugfix_read_config_before_running_… #66

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup dependencies
run: pip install -r test_requirements.txt
- name: Setup tox
run: pip install tox tox-gh-actions
- name: Run tests
run: tox