Skip to content

add randomness to match dans orders #291

add randomness to match dans orders

add randomness to match dans orders #291

Workflow file for this run

name: Build and Test
on:
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20.4
uses: actions/setup-go@v2
with:
go-version: 1.21.1
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test ./... -v
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.0