Skip to content

Commit

Permalink
Add github actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
stinovlas committed Jun 27, 2022
1 parent ac12f7b commit 6f5d42c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run quality control

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python: [3.7, 3.8, 3.9, "3.10"]

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox wheel
- name: Run quality checks
run: |
tox

0 comments on commit 6f5d42c

Please sign in to comment.