Support redis sentinel password auth #22
Workflow file for this run
This file contains hidden or 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: Run test suites | |
| on: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| erlang: | |
| - otp: "24" | |
| rebar3: "3.20" | |
| - otp: "25" | |
| rebar3: "3.22" | |
| - otp: "26" | |
| rebar3: "3.22" | |
| - otp: "27" | |
| rebar3: "3.24" | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: ${{ matrix.erlang.otp }} | |
| rebar3-version: ${{ matrix.erlang.rebar3 }} | |
| - uses: hoverkraft-tech/compose-action@v2.0.2 | |
| - name: eunit | |
| run: rebar3 eunit -v -c | |
| - name: common test | |
| run: rebar3 ct -v -c | |
| - name: cover report | |
| run: rebar3 cover -v | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: cover-${{ matrix.erlang.otp }}-${{ matrix.erlang.rebar3 }} | |
| path: _build/test/cover |