Skip to content

Update by octocov

Update by octocov #45

Workflow file for this run

name: Go
on:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
build:
permissions:
contents: write
name: Build
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: ./go.mod
- run: make lint
- run: make cover
- uses: k1LoW/octocov-action@v1