Move primer to own workflow (#1451)

This commit is contained in:
Hugo van Kemenade 2020-05-22 21:38:37 +03:00 committed by GitHub
parent 397b16431e
commit d0b3d38493
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 6 deletions

31
.github/workflows/primer.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: Primer
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[d]"
- name: Primer run
env:
pythonioencoding: utf-8
run: |
black-primer

View File

@ -28,9 +28,3 @@ jobs:
- name: Unit tests
run: |
coverage run -m unittest
- name: primer run
env:
pythonioencoding: utf-8
run: |
black-primer