feat: update shuffle to new random shuffle #37
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: Go | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: | |
- 1.20.7 | |
- 1.21.0 | |
steps: | |
- uses: actions/checkout@v3.5.3 | |
- name: Setup Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v4.0.1 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Display Go version | |
run: go version | |
- name: Install Go Dependencies | |
run: go get ./... | |
- name: Execute Go Build | |
run: go build -v ./... | |
- name: Execute Go Test | |
run: go test -v ./... | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.5.3 | |
- name: Setup Go | |
uses: actions/setup-go@v4.0.1 | |
with: | |
go-version: 1.20.7 | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v3.6.0 | |
with: | |
version: v1.53.3 | |
skip-pkg-cache: true | |
skip-build-cache: true | |
args: --timeout=10m |