Skip to content

Commit

Permalink
Create tox.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
djk2 authored Jan 27, 2020
1 parent e3673da commit 54d7f55
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Tests by Tox

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python: [2.7, 3.7]

steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install Tox
run: pip install tox
- name: Run Tox
run: tox -r # Run tox using the version of Python in `PATH`

0 comments on commit 54d7f55

Please sign in to comment.