Skip to content

Commit

Permalink
Update workflow doc strings
Browse files Browse the repository at this point in the history
  • Loading branch information
ymattw committed Jun 23, 2024
1 parent 512e6fb commit 785c9fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ jobs:
strategy:
matrix:
python-version:
# Available versions:
# https://github.com/actions/python-versions/blob/main/versions-manifest.json
- "3.8"
- "3.9"
- "3.10"
Expand All @@ -43,6 +41,7 @@ jobs:
- name: "Run make build in Docker"
uses: "addnab/docker-run-action@v3"
with:
# Available tags: https://hub.docker.com/_/python/tags
image: "python:${{ matrix.python-version }}-alpine"
options: --rm -v ${{ github.workspace }}:/workspace -w /workspace
run: |
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ jobs:
strategy:
matrix:
python-version:
# Available versions:
# https://github.com/actions/python-versions/blob/main/versions-manifest.json
- "3.8"
- "3.9"
- "3.10"
Expand All @@ -43,6 +41,7 @@ jobs:
- name: "Run tests in Docker"
uses: "addnab/docker-run-action@v3"
with:
# Available tags: https://hub.docker.com/_/python/tags
image: "python:${{ matrix.python-version }}-alpine"
options: --rm -v ${{ github.workspace }}:/workspace -w /workspace
run: |
Expand Down

0 comments on commit 785c9fd

Please sign in to comment.