Skip to content

Commit

Permalink
Use python 3.8, try x platform test
Browse files Browse the repository at this point in the history
  • Loading branch information
KjellMorgenstern committed Oct 29, 2020
1 parent f4bd8b9 commit 85486c2
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,21 @@ name: check-all-parts
on: [push]
jobs:
run-some-scripts:
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v2
- run: python scripts/checkascii.py .
- run: python scripts/checkcase.py
- run: python scripts/connectors_misnumbered.py -d .
- run: python scripts/checkcopies.py -d svg
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Run tests
run: python scripts/checkascii.py .
run: python scripts/checkcase.py
run: python scripts/connectors_misnumbered.py -d .
run: python scripts/checkcopies.py -d svg

0 comments on commit 85486c2

Please sign in to comment.