Skip to content

Commit

Permalink
ticks
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianBeilschmidt committed Jan 17, 2025
1 parent 29c7262 commit 60e2f00
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

jobs:
check:
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04

services:
postgres:
Expand Down Expand Up @@ -43,15 +43,15 @@ jobs:
echo "GEOENGINE_VERSION=$(cat .github/.backend_git_ref)" >> $GITHUB_OUTPUT
if ${{ inputs.use-uv }}; then
echo "PIP_PREFIX=uv" >> $GITHUB_OUTPUT
echo "PIP_RESOLUTION='--resolution=lowest-direct'" >> $GITHUB_OUTPUT
echo "VENV_CALL='source .venv/bin/activate'" >> $GITHUB_OUTPUT
echo "PIP_RESOLUTION=--resolution=lowest-direct" >> $GITHUB_OUTPUT
echo "VENV_CALL=source .venv/bin/activate" >> $GITHUB_OUTPUT
else
echo "PIP_PREFIX=" >> $GITHUB_OUTPUT
echo "PIP_RESOLUTION=" >> $GITHUB_OUTPUT
echo "VENV_CALL=" >> $GITHUB_OUTPUT
fi
if ${{ inputs.coverage }}; then
echo "COVERAGE_COMMAND='--cov=geoengine --cov-report=lcov'" >> $GITHUB_OUTPUT
echo "COVERAGE_COMMAND=--cov=geoengine --cov-report=lcov" >> $GITHUB_OUTPUT
else
echo "COVERAGE_COMMAND=" >> $GITHUB_OUTPUT
fi
Expand Down

0 comments on commit 60e2f00

Please sign in to comment.