This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
Bump Ubuntu action runner to 24.04 #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/golang/go/issues/59968 | |
name: ʕ◔ϖ◔ʔ | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/ci-go.yml' | |
- '**.go' | |
- 'go.*' | |
pull_request: | |
paths: | |
- '.github/workflows/ci-go.yml' | |
- '**.go' | |
- 'go.*' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
cache-dependency-path: 'go.sum' | |
- run: go build -v -race ./... | |
test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
cache-dependency-path: 'go.sum' | |
- run: go test ./... | |
lint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
cache-dependency-path: 'go.sum' | |
- run: go vet ./... | |
- name: check format | |
run: go fmt ./... && git add --intent-to-add . && git diff --exit-code |