Skip to content

Commit

Permalink
ci: Enforce jammy base for workflows relying on 'sg'
Browse files Browse the repository at this point in the history
  • Loading branch information
Batalex committed Jan 10, 2025
1 parent c33f191 commit c17e6d3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ on:
jobs:
checks:
name: Code checks
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 5
strategy:
fail-fast: true
matrix:
python-version:
- '3.9'
- '3.10'
- "3.9"
- "3.10"
steps:
- id: checkout
name: Checkout repo
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Run Tests

on:
schedule:
- cron: '53 0 * * *' # Daily at 00:53 UTC
- cron: "53 0 * * *" # Daily at 00:53 UTC
workflow_call:

jobs:
Expand All @@ -11,14 +11,14 @@ jobs:

test:
name: Unit and Integration Tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 60
strategy:
fail-fast: true
matrix:
python-version:
- '3.9'
- '3.10'
- "3.9"
- "3.10"
needs:
- checks
steps:
Expand Down

0 comments on commit c17e6d3

Please sign in to comment.