Skip to content

Bump golang.org/x/sync from 0.6.0 to 0.7.0 #65

Bump golang.org/x/sync from 0.6.0 to 0.7.0

Bump golang.org/x/sync from 0.6.0 to 0.7.0 #65

Workflow file for this run

name: Go linters
on:
push:
branches:
- main
pull_request:
jobs:
golint:
runs-on: ubuntu-20.04
strategy:
matrix:
go-version:
- "1.20"
- "1.21"
name: Linters for Go ${{ matrix.go-version}}
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Build project
run: go build
- name: Style linters
run: make style