Bump golang.org/x/net from 0.21.0 to 0.23.0 in the go_modules group (… #47
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
go: | |
name: Go | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
cache: true | |
cache-dependency-path: go.sum | |
- name: Download Dependencies | |
run: | | |
go mod download | |
- name: Vet | |
run: | | |
make vet | |
- name: Test | |
run: | | |
make test | |
- name: Build Plugin | |
run: | | |
make build-plugin | |
- name: Build Ingester | |
run: | | |
make build-ingester |