Skip to content

Commit

Permalink
Merge pull request #9 from dmtucker/graphviz
Browse files Browse the repository at this point in the history
Update GitHub workflows
  • Loading branch information
dmtucker committed Jun 14, 2021
2 parents b6f4cee + d1e20ae commit 0e9ecc7
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 20 deletions.
1 change: 1 addition & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
with:
python-version: '3.8'
- run: python -m pip install --upgrade tox
- run: sudo apt install graphviz
- env:
REFNAME: ${{ github.event.release.tag_name }}
run: |
Expand Down
20 changes: 0 additions & 20 deletions .github/workflows/test.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Validation
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade tox-gh-actions
- run: sudo apt install graphviz
- run: tox

0 comments on commit 0e9ecc7

Please sign in to comment.