Skip to content

Commit

Permalink
Fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
lodewiges authored Dec 31, 2024
1 parent 4946b3c commit 99fce79
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |

Check failure on line 130 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / Lint

shellcheck reported issue in this script: SC1101:error:2:12: Delete trailing spaces after \ to break line (or use quotes for literal space)

Check failure on line 130 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / Lint

shellcheck reported issue in this script: SC2215:warning:3:3: This flag is used as a command name. Bad line break or missing [ .. ]?

Check failure on line 130 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / Lint

shellcheck reported issue in this script: SC1101:error:8:40: Delete trailing spaces after \ to break line (or use quotes for literal space)
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
Expand Down

0 comments on commit 99fce79

Please sign in to comment.