Skip to content

ci: dependabotによるgithub actionのアップデートをグループ化する #83

ci: dependabotによるgithub actionのアップデートをグループ化する

ci: dependabotによるgithub actionのアップデートをグループ化する #83

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.21', '1.22', '1.23']
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
with:
go-version: ${{ matrix.go-version }}
- name: Get dependencies
run: go get -v -t -d
- name: Build
run: go build
- name: Test
run: go test -v