From 854b1cd0184f916e6df95d4fd6d83816dd61e244 Mon Sep 17 00:00:00 2001 From: Max Halford Date: Thu, 2 Nov 2023 16:14:59 +0100 Subject: [PATCH] wip --- .github/actions/install-env/action.yml | 3 ++- .github/workflows/code-quality.yml | 3 --- .github/workflows/unit-tests.yml | 4 ++-- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/actions/install-env/action.yml b/.github/actions/install-env/action.yml index d3806badff..f004563cb2 100644 --- a/.github/actions/install-env/action.yml +++ b/.github/actions/install-env/action.yml @@ -23,11 +23,12 @@ runs: uses: actions/cache@v3 with: path: ~/.local - key: poetry-0 + key: poetry-1.3.4 - name: Install poetry uses: snok/install-poetry@v1 with: + version: 1.3.4 virtualenvs-create: true virtualenvs-in-project: true installer-parallel: true diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index c349ae1e99..ed8d96346f 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -1,9 +1,6 @@ name: code-quality on: - pull_request: - branches: - - "*" push: branches: - main diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 0e5f622b4f..8750df8cb4 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -14,10 +14,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Retrieve the environment and the River build + - name: Build River uses: ./.github/actions/install-env with: - python-version: "3.12" + python-version: "3.11" - name: Cache River datasets uses: actions/cache@v3