Skip to content

Commit

Permalink
Add workflows for running tests. Ref jaraco/skeleton#24.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Oct 10, 2020
1 parent 678e1a9 commit ea912cf
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,22 @@
name: Main

on: [push, pull_request]

jobs:
test:
strategy:
matrix:
python: [3.6, 3.7, 3.8]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: |
python -m pip install tox
- name: Run tests
run: tox

0 comments on commit ea912cf

Please sign in to comment.