Skip to content

Commit

Permalink
Merge branch 'master' into add-cov-badge
Browse files Browse the repository at this point in the history
  • Loading branch information
SauravMaheshkar authored Dec 18, 2024
2 parents f5ad402 + cb9a730 commit dd59ed7
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_example_nbs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
convert-to-nbs:
name: "Check Example Notebooks"
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout Code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/discord_release_notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
notify-discord:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Send Notification to Discord
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:
name: Build and release
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
detect-code-changes:
name: Detect Code Changes
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
run-tests: ${{ steps.filter.outputs.run-tests }}
steps:
Expand All @@ -29,7 +29,7 @@ jobs:
name: Test
needs: detect-code-changes
if: needs.detect-code-changes.outputs.run-tests == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
python: ["3.7", "3.12"]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_api_deps_only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
detect-code-changes:
name: Detect Code Changes
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
run-tests: ${{ steps.filter.outputs.run-tests }}
steps:
Expand All @@ -30,7 +30,7 @@ jobs:
name: Test
needs: detect-code-changes
if: needs.detect-code-changes.outputs.run-tests == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout Code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_code_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
test:
name: Check
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
python: ["3.7", "3.12"]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_minimal_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
detect-code-changes:
name: Detect Code Changes
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
run-tests: ${{ steps.filter.outputs.run-tests }}
steps:
Expand All @@ -29,7 +29,7 @@ jobs:
name: Test
needs: detect-code-changes
if: needs.detect-code-changes.outputs.run-tests == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
python: ["3.7"]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
detect-code-changes:
name: Detect Code Changes
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
run-tests: ${{ steps.filter.outputs.run-tests }}
steps:
Expand All @@ -27,7 +27,7 @@ jobs:
name: Test setup.py
needs: detect-code-changes
if: needs.detect-code-changes.outputs.run-tests == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout Code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests_unmocked.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on: [workflow_dispatch]
jobs:
test:
name: Run unmocked tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout Code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly_dependency_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
test_fresh_install:
name: Test fresh install
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down

0 comments on commit dd59ed7

Please sign in to comment.