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
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

name: Unit Test CI

Check warning on line 15 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

build.yaml:15: overly broad permissions: default permissions used due to no permissions: block

on:
push:
Expand All @@ -20,16 +20,16 @@
pull_request:

jobs:
python-tests:

Check warning on line 23 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

build.yaml:23: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: Unit Tests with Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

Check warning on line 30 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

ref-version-mismatch

build.yaml:30: action's hash pin has mismatched or missing version comment: points to commit 11d5960a3267
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5

Check failure on line 32 in .github/workflows/build.yaml

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 32 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build.yaml:32: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
Expand All @@ -43,16 +43,16 @@
PYTHONPATH: "."
run: |
pytest --cov=./ --cov-report=xml
windows-tests:

Check warning on line 46 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

build.yaml:46: overly broad permissions: default permissions used due to no permissions: block
runs-on: windows-2022
runs-on: windows-2025
strategy:
matrix:
python-version: ["3.11"]
name: Unit Tests On Windows Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

Check warning on line 53 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

ref-version-mismatch

build.yaml:53: action's hash pin has mismatched or missing version comment: points to commit 11d5960a3267
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5

Check failure on line 55 in .github/workflows/build.yaml

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 55 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build.yaml:55: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
Expand Down
Loading