Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

# A workflow that runs tests on every new pull request
name: Run tests

Check warning on line 16 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

test.yml:16: overly broad permissions: default permissions used due to no permissions: block

on:
repository_dispatch:
Expand All @@ -24,7 +24,7 @@
branches: ['*']

jobs:
matrix:

Check warning on line 27 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

test.yml:27: overly broad permissions: default permissions used due to no permissions: block
name: "Run tests on Python ${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
Expand All @@ -32,10 +32,10 @@
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

Check failure on line 35 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 35 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

test.yml:35: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Setup Python
uses: "actions/setup-python@v3"
uses: "actions/setup-python@v5"

Check failure on line 38 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 38 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

test.yml:38: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
python-version: "${{ matrix.python-version }}"

Expand All @@ -46,7 +46,7 @@
run: |
python3 -m nox --session "tests-${{ matrix.python-version }}"
python3 -m nox -e distribution
test:

Check warning on line 49 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

test.yml:49: overly broad permissions: default permissions used due to no permissions: block
name: Wait for matrix to finish
needs: [matrix]
runs-on: ubuntu-latest
Expand Down
Loading