Bump golang.org/x/net from 0.17.0 to 0.23.0 #202
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: Run Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Run Service Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout current repo | |
- uses: actions/setup-go@v3 | |
name: Install Go | |
with: | |
go-version: "1.20" | |
- name: Run static analysis | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: "v1.52.2" | |
args: --timeout=10m | |
- name: Run application | |
run: make start | |
- name: Run tests | |
run: make tests |