Skip to content

Update to use work_dir #28

Update to use work_dir

Update to use work_dir #28

Workflow file for this run

name: Python package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.6
uses: actions/setup-python@v1
with:
python-version: 3.6
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Setup git
run: |
git config --global user.email "[email protected]"
git config --global user.name "Max Tester"
- name: Run tox
run: |
tox