Skip to content

Bump golang.org/x/net from 0.17.0 to 0.23.0 #202

Bump golang.org/x/net from 0.17.0 to 0.23.0

Bump golang.org/x/net from 0.17.0 to 0.23.0 #202

Workflow file for this run

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