chore: pick redis sentinel acl & custom secret password & redis clust… #1213
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ShellSpec Test | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
env: | |
BASE_BRANCH: origin/main | |
jobs: | |
shellspec-test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install kcov | |
run: sudo apt-get install -y bash kcov | |
- name: shellspec test | |
run: | | |
make scripts-test-kcov | |
- name: Upload coverage | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
run: | | |
bash <(curl -s https://codecov.io/bash) -s coverage | |