Skip to content

Commit

Permalink
Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
imperugo committed Mar 10, 2020
1 parent 36764c6 commit aa03792
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ jobs:
strategy:
fail-fast: false
matrix:
runs-on: [macOS-latest, ubuntu-latest, windows-latest]
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
name: ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
runs-on: ${{ matrix.os }}
steps:
- name: Install Dependencies (Ubuntu)
uses: zhulik/redis-action@1.1.0
#uses: zhulik/redis-action@1.1.0
run: sudo apt install redis-server
if: matrix.os == 'ubuntu-latest'

- name: Install Dependencies (Windows)
Expand Down

0 comments on commit aa03792

Please sign in to comment.