Skip to content

Merge pull request #96 from Edvinas9/feature/AVB-821-ticket-zone #412

Merge pull request #96 from Edvinas9/feature/AVB-821-ticket-zone

Merge pull request #96 from Edvinas9/feature/AVB-821-ticket-zone #412

Workflow file for this run

name: Unit tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: tox -e py # Run tox using the version of Python in `PATH`