Skip to content

不要な print を削除 #6

不要な print を削除

不要な print を削除 #6

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.23
cache: true
- run: go mod download
- run: go test -shuffle=on -v ./...
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.23
cache: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.61