Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Update chrome 123.0.6312.86/123.0.6312.8 -> 123.0.6312.106/123.0.6312.10 #14

Update chrome 123.0.6312.86/123.0.6312.8 -> 123.0.6312.106/123.0.6312.10

Update chrome 123.0.6312.86/123.0.6312.8 -> 123.0.6312.106/123.0.6312.10 #14

Workflow file for this run

# 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-22.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-22.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-22.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