setup-redis/.github/workflows/main.yml

21 lines
390 B
YAML
Raw Normal View History

2019-12-17 14:04:12 +00:00
name: Start Redis Server
2019-12-17 12:44:54 +00:00
on: [push]
jobs:
redis-action:
runs-on: ubuntu-latest
strategy:
matrix:
2019-12-17 13:58:40 +00:00
redis-version: [4, 5]
2019-12-17 12:44:54 +00:00
name: Start Redis Server v${{ matrix.redis-version }}
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Start Redis Server
uses: ./
with:
redis-version: ${{ matrix.redis-version }}