Skip to content

Bump golang.org/x/tools from 0.10.0 to 0.11.0 in /tools #307

Bump golang.org/x/tools from 0.10.0 to 0.11.0 in /tools

Bump golang.org/x/tools from 0.10.0 to 0.11.0 in /tools #307

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: 1.18.10
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Style checks
run: |
make style
if ! git diff --exit-code HEAD; then
echo
echo "*** Files are not formatted properly. See the above diff for more info."
exit 1
fi
- name: Unit tests
run: |
make unit-tests
- name: Integration tests
run: |
make integration-tests