Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
m-wrzr committed Jan 2, 2025
1 parent 48bacd4 commit e0ca568
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/actions/setup_backend/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ runs:
using: composite
steps:

- name: Install linux dependencies
run: apt-get install zlib1g-dev
shell: bash --login -eo pipefail {0}

- name: Set up Python ${{ inputs.python-version }}
uses: actions/setup-python@v5
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push]

jobs:
pre-commit:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.9", "3.11", "3.12"]
Expand All @@ -19,7 +19,7 @@ jobs:

types:
needs: [pre-commit]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.9", "3.11", "3.12"]
Expand All @@ -34,7 +34,7 @@ jobs:

tests:
needs: [pre-commit, types]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.9", "3.12"]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push]

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

defaults:
run:
Expand Down

0 comments on commit e0ca568

Please sign in to comment.