1
0
mirror of https://github.com/enpaul/keyosk.git synced 2024-09-28 19:54:01 +00:00

Add CI workflow

This commit is contained in:
Ethan Paul 2020-02-23 20:08:42 -05:00 committed by GitHub
parent caa31b2dc3
commit 6615863580
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

18
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: Run automation checks
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Run tox automation
run: |
pip install tox
tox