Skip to content

Merge pull request #183 from eduolivares/fix_tobiko_dir_owner #594

Merge pull request #183 from eduolivares/fix_tobiko_dir_owner

Merge pull request #183 from eduolivares/fix_tobiko_dir_owner #594

Workflow file for this run

name: Run tox jobs
on:
- push
- pull_request
jobs:
tox:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install tox
- name: Run lint jobs
run: tox -e linters
- name: Run unit tests
run: tox -e py3