Skip to content

Replace custom linked-list with 'container/list' #10

Replace custom linked-list with 'container/list'

Replace custom linked-list with 'container/list' #10

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
go-version: [1.18.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 source code
uses: actions/checkout@v2
- name: Run tests
run: go test ./...