Skip to content

Commit

Permalink
Switch to block-style sequence in build workflow
Browse files Browse the repository at this point in the history
Switch from a flow style to a block style sequence in the build workflow. This
will improve maintainability by making version changes impact one Python
version at a time.
  • Loading branch information
mcdonnnj committed Jul 29, 2021
1 parent 30b1756 commit c6de0a1
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
steps:
- uses: actions/checkout@v2
- id: setup-python
Expand Down Expand Up @@ -199,7 +203,11 @@ jobs:
needs: [lint, test]
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
steps:
- uses: actions/checkout@v2
- id: setup-python
Expand Down

0 comments on commit c6de0a1

Please sign in to comment.