Skip to content

Bump golang.org/x/sync from 0.9.0 to 0.10.0 in the go-modules group #24

Bump golang.org/x/sync from 0.9.0 to 0.10.0 in the go-modules group

Bump golang.org/x/sync from 0.9.0 to 0.10.0 in the go-modules group #24

Workflow file for this run

name: "Test"
on:
# TODO: move to "main" branch
push:
branches:
- "master"
pull_request:
branches:
- "master"
jobs:
run:
name: "Go"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Setup Go"
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: "Build"
run: |
go build -v ./...
- name: "Test"
run: |
go test -v ./...