Skip to content

Bump golang.org/x/net from 0.0.0-20211123203042-d83791d6bcd9 to 0.17.0 #38

Bump golang.org/x/net from 0.0.0-20211123203042-d83791d6bcd9 to 0.17.0

Bump golang.org/x/net from 0.0.0-20211123203042-d83791d6bcd9 to 0.17.0 #38

Workflow file for this run

name: End to end tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test-with-cache:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/cache@v2
with:
# In order:
# * Module download cache
# * Build cache (Linux)
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build testing CLI
run: go build -o ./test-cli ./resolution
- name: End-to-end test
run: go test