setup-redis/.github/workflows/fallback-to-latest-version.yml

21 lines
417 B
YAML
Raw Normal View History

2021-01-08 09:56:50 +00:00
name: Start Redis Server with latest version
on: [push, pull_request]
jobs:
redis-action:
runs-on: ubuntu-latest
2021-01-08 09:59:37 +00:00
strategy:
matrix:
redis-version: []
2021-01-08 09:56:50 +00:00
name: Start Redis Server with latest Redis version
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Start Redis Server
uses: ./
2021-01-08 09:59:37 +00:00
with:
redis-version: ${{ matrix.redis-version }}