Skip to content
Open
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/code-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
python-version: ["3.9"]
steps:
- name: Checkout actions
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Init environment
uses: ./.github/actions/init-environment
- name: Run formatter
Expand All @@ -34,7 +34,7 @@ jobs:
python-version: [ "3.9" ]
steps:
- name: Checkout actions
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Init environment
uses: ./.github/actions/init-environment
- name: Run type checker
Expand All @@ -47,7 +47,7 @@ jobs:
python-version: [ "3.9" ]
steps:
- name: Checkout actions
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Init environment
uses: ./.github/actions/init-environment
- name: Run linter
Expand All @@ -60,7 +60,7 @@ jobs:
python-version: ["3.9"]
steps:
- name: Checkout actions
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Init environment
uses: ./.github/actions/init-environment
- name: Run unit tests
Expand All @@ -80,7 +80,7 @@ jobs:
python-version: [ "3.9" ]
steps:
- name: Checkout actions
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Init environment
uses: ./.github/actions/init-environment
- name: Run linter
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
--health-retries 5
steps:
- name: Checkout actions
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Init environment
uses: ./.github/actions/init-environment
# Integration tests will run on all code snippets, outputting their logs to /tmp/logs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
python-version: ["3.9"]
steps:
- name: Checkout actions
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Init environment
uses: ./.github/actions/init-environment
- name: uv Build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout actions
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Init environment
uses: ./.github/actions/init-environment
- name: Run unit tests
Expand All @@ -34,7 +34,7 @@ jobs:
python-version: ["3.9"]
steps:
- name: Checkout actions
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Init environment
uses: ./.github/actions/init-bare-environment
- name: Run unit tests
Expand All @@ -50,7 +50,7 @@ jobs:
shell: bash
steps:
- name: Checkout actions
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Init environment
uses: ./.github/actions/init-environment
- name: Run unit tests
Expand Down
Loading