Skip to content

Commit 3930957

Browse files
committed
Try to fix alpine and debian containers
1 parent fdf833b commit 3930957

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
python-version: ['3.9', '3.10', '3.11', '3.12']
18-
os: [ubuntu-latest, ubuntu-20.04, ubuntu-22.04]
18+
os: [ubuntu-latest, ubuntu-22.04, ubuntu-24.04]
1919

2020
steps:
2121
- uses: actions/checkout@v4
@@ -84,16 +84,18 @@ jobs:
8484
- name: Install uv
8585
run: |
8686
curl -LsSf https://astral.sh/uv/install.sh | sh
87-
echo "$HOME/.local/bin" >> $GITHUB_PATH
87+
export PATH="$HOME/.local/bin:$PATH"
8888
8989
- name: Install package
9090
run: |
91+
export PATH="$HOME/.local/bin:$PATH"
9192
uv venv
9293
source .venv/bin/activate
9394
uv pip install -e ".[dev,test]"
9495
9596
- name: Run tests
9697
run: |
98+
export PATH="$HOME/.local/bin:$PATH"
9799
source .venv/bin/activate
98100
pytest -v
99101

0 commit comments

Comments
 (0)