Bump golang.org/x/net from 0.17.0 to 0.23.0 #484
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: test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Fetch tags | |
run: | | |
git fetch --prune --unshallow --tags | |
- name: Run linter | |
run: make lint | |
- name: Run tests | |
run: make test | |
- name: Run test-backends | |
run: make test-backends | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Run release | |
run: make release |