Skip to content

Commit

Permalink
Move primer to own workflow (#1451)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed May 22, 2020
1 parent 397b164 commit d0b3d38
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 6 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/primer.yml
Original file line number Diff line number Diff line change
@@ -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 changes: 0 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,3 @@ jobs:
- name: Unit tests
run: |
coverage run -m unittest
- name: primer run
env:
pythonioencoding: utf-8
run: |
black-primer

0 comments on commit d0b3d38

Please sign in to comment.