Skip to content

Bump golang.org/x/net from 0.7.0 to 0.17.0 in /server #101

Bump golang.org/x/net from 0.7.0 to 0.17.0 in /server

Bump golang.org/x/net from 0.7.0 to 0.17.0 in /server #101

Workflow file for this run

on: [pull_request]
name: Test Go server
jobs:
test:
strategy:
matrix:
go-version: [1.17.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: |
cd server
mv config_example.yaml config.yaml
go test -v -cover -covermode=atomic ./...