Skip to content

Commit

Permalink
CI: install Redis
Browse files Browse the repository at this point in the history
Added CI step that installs and configures Redis.
  • Loading branch information
webwarrior-ws committed Feb 1, 2024
1 parent a38e22c commit b90ef67
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ jobs:
- name: Compile the main solution
run: dotnet build

- name: Install and start Redis
run: |
sudo apt install --yes --no-install-recommends redis-server
redis-server --daemonize yes
- name: Run tests
run: dotnet test

0 comments on commit b90ef67

Please sign in to comment.