Skip to content

Commit

Permalink
plz work
Browse files Browse the repository at this point in the history
  • Loading branch information
Enrico Marconi committed Aug 4, 2023
1 parent fbfb1f7 commit 787ba73
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/general.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ on:

env:
CARGO_TERM_COLOR: always
REDIS_USER: emarconi
REDIS_PASSWORD: supa_password
REDIS_PORT: 6379
REDIS_ARGS: --requirepass supa_password --user emarconi on >supa_password allkeys allcommands --user default off nopass nocommands

jobs:
test:
Expand All @@ -24,9 +20,9 @@ jobs:
redis:
image: redis/redis-stack-server:7.0.6-RC9
env:
REDIS_ARGS: ${{ env.REDIS_ARGS }}
REDIS_ARGS: "--requirepass ${{ secrets.REDIS_PASSWORD }} --user ${{ secrets.REDIS_USER }} on >${{ secrets.REDIS_PASSWORD}} allkeys allcommands --user default off nopass nocommands"
ports:
- ${{ env.REDIS_PORT }}:6379
- 6379:6379
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -56,9 +52,9 @@ jobs:
redis:
image: redis/redis-stack-server:7.0.6-RC9
env:
REDIS_ARGS: ${{ env.REDIS_ARGS }}
REDIS_ARGS: "--requirepass ${{ secrets.REDIS_PASSWORD }} --user ${{ secrets.REDIS_USER }} on >${{ secrets.REDIS_PASSWORD}} allkeys allcommands --user default off nopass nocommands"
ports:
- ${{ env.REDIS_PORT }}:6379
- 6379:6379
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
Expand All @@ -79,9 +75,9 @@ jobs:
redis:
image: redis/redis-stack-server:7.0.6-RC9
env:
REDIS_ARGS: ${{ env.REDIS_ARGS }}
REDIS_ARGS: "--requirepass ${{ secrets.REDIS_PASSWORD }} --user ${{ secrets.REDIS_USER }} on >${{ secrets.REDIS_PASSWORD}} allkeys allcommands --user default off nopass nocommands"
ports:
- ${{ env.REDIS_PORT }}:6379
- 6379:6379
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down

0 comments on commit 787ba73

Please sign in to comment.