8000 Add solution and test-cases for problem 3333 · 6boris/awesome-golang-algorithm@027d10d · GitHub
[go: up one dir, main page]

Skip to content

Add solution and test-cases for problem 3333 #1871

Add solution and test-cases for problem 3333

Add solution and test-cases for problem 3333 #1871

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- master
jobs:
build:
name: Test Solution Cases
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '^1.24.0'
id: go
- name: Get dependencies
run: go mod download
- name: Test Solutions
run: make test
0