Distinguish between redis nil values and empty strings #71
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: ci | |
| on: [push] | |
| jobs: | |
| make: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: install redis | |
| run: sudo apt-get install redis-server | |
| - uses: actions/setup-go@v4 | |
| with: | |
| go-version: "^1.20" | |
| - name: test & lint | |
| # run: make test lint | |
| run: make test | |
| - name: Send coverage | |
| if: always() | |
| env: | |
| COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }} | |
| run: make send-cover |