From a08e5683b2f14d69049854ca6e57e6edaf54239c Mon Sep 17 00:00:00 2001 From: Martin Gruber Date: Sun, 15 Sep 2024 23:13:15 +0200 Subject: [PATCH] specify ubuntu-20.04 --- .github/workflows/actions.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index d96dc49..098ff37 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -8,7 +8,7 @@ env: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Install Python version @@ -23,7 +23,7 @@ jobs: run: python --version && pip install poetry && poetry install test: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 needs: build steps: @@ -43,4 +43,4 @@ jobs: - name: Test run: poetry run pytest -v --cov=flapy --cov-branch --cov-report html:cov_html --cov-report=term-missing tests/ - working-directory: ${{ github.workspace }} \ No newline at end of file + working-directory: ${{ github.workspace }}