Ooo refactor storage #8
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
| on: [pull_request] | |
| name: Test | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go-version: [1.25.x] | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: install | |
| run: | | |
| go get github.com/stretchr/testify | |
| go get github.com/benitogf/jwt | |
| go get github.com/benitogf/ooo | |
| go get github.com/benitogf/pivot | |
| go get golang.org/x/crypto/bcrypt | |
| - name: lint | |
| run: go vet . | |
| - name: Test | |
| run: go test -v -coverprofile cover.out -count 1 -failfast -race . |