Bump golang.org/x/net from 0.9.0 to 0.17.0 #452
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: tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
tests: | |
name: tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Start docker-compose | |
run: | | |
docker-compose --version | |
docker-compose up -d | |
- name: Build | |
run: make build | |
- name: unittest | |
run: make gotest | |
- name: benchtest | |
run: make benchtest | |
- name: systest | |
run: make systest | |
- name: Stop docker-compose | |
run: docker-compose down |