Skip to content

Merge pull request #313 from FlTr/windows-paths-and-patch-file #73

Merge pull request #313 from FlTr/windows-paths-and-patch-file

Merge pull request #313 from FlTr/windows-paths-and-patch-file #73

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