Skip to content

Commit

Permalink
Fix unrecognized named value (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
aksestok authored Sep 13, 2021
1 parent 3ccc7e4 commit 16e9860
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,9 @@ on:
release:
types: [published]

env:
runner-os: ubuntu-latest

jobs:
build-package:
runs-on: ${{ env.runner-os }}
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -38,7 +35,7 @@ jobs:

test-package:
needs: build-package
runs-on: ${{ env.runner-os }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
Expand Down Expand Up @@ -70,7 +67,7 @@ jobs:
publish-package-to-pypi:
needs: test-package
runs-on: ${{ env.runner-os }}
runs-on: ubuntu-latest

steps:
- name: Recover cache
Expand Down

0 comments on commit 16e9860

Please sign in to comment.