From 99fce793425aa5d0e282f9f61898aad72ffdf154 Mon Sep 17 00:00:00 2001 From: lodewiges <131907615+lodewiges@users.noreply.github.com> Date: Tue, 31 Dec 2024 01:22:40 +0100 Subject: [PATCH] Fix? --- .github/workflows/continuous-integration.yml | 24 ++++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index ec6e0d67a..b13fcc254 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -125,18 +125,18 @@ jobs: name: app - name: Test - env: - RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }} - run: | - mkdir coverage - docker run \ - -e RAILS_MASTER_KEY \ - -e POSTGRES_USER=postgres \ - -e POSTGRES_PASSWORD=postgres \ - -e POSTGRES_HOST=localhost \ - --network=host \ - -v "$(pwd)"'/coverage:/app/coverage' \ - app bin/ci.sh spec + env: + RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }} + run: | + mkdir coverage + docker run \ + -e RAILS_MASTER_KEY \ + -e POSTGRES_USER=postgres \ + -e POSTGRES_PASSWORD=postgres \ + -e POSTGRES_HOST=localhost \ + --network=host \ + -v "$(pwd)"'/coverage:/app/coverage' \ + app bin/ci.sh spec - name: Upload coverage report to Codecov