Skip to content

Ooo refactor storage #8

Ooo refactor storage

Ooo refactor storage #8

Workflow file for this run

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 .