Skip to content

Commit

Permalink
Add github workflow to test branches
Browse files Browse the repository at this point in the history
  • Loading branch information
reallistic committed Jun 10, 2020
1 parent 663f779 commit 6a8a259
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test branches

on:
push:
branches-ignore:
- master

jobs:
build:

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

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

0 comments on commit 6a8a259

Please sign in to comment.