Bump golang.org/x/net from 0.21.0 to 0.23.0 #99
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
name: Build and Run Tests | |
on: [pull_request] | |
jobs: | |
build: | |
name: Code generation & compile | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-2019, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ vars.GO_VERSION }} | |
- name: Generate protos and build project | |
run: make generate-protos-and-build | |
- name: Misc tests | |
run: make misc | |
tests: | |
needs: build | |
name: Tests | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [previous-lts, lts, latest] | |
uses: ./.github/workflows/tests.yml | |
with: | |
esdb_version: ${{ matrix.version }} | |
linting: | |
needs: tests | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Linting | |
run: go vet ./... | |
- name: Code formatting checks | |
run: diff -u <(echo -n) <(goimports -d ./) |