Move primer to own workflow (#1451)
This commit is contained in:
parent
397b16431e
commit
d0b3d38493
31
.github/workflows/primer.yml
vendored
Normal file
31
.github/workflows/primer.yml
vendored
Normal 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
|
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
@ -28,9 +28,3 @@ jobs:
|
||||
- name: Unit tests
|
||||
run: |
|
||||
coverage run -m unittest
|
||||
|
||||
- name: primer run
|
||||
env:
|
||||
pythonioencoding: utf-8
|
||||
run: |
|
||||
black-primer
|
||||
|
Loading…
Reference in New Issue
Block a user