Skip to content

more updates for unique list and ordered set #5

more updates for unique list and ordered set

more updates for unique list and ordered set #5

Workflow file for this run

name: Go
on: [push]
jobs:
build:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- '6379:6379'
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go run gotest.tools/gotestsum@latest