Skip to content

Bump golang.org/x/net from 0.0.0-20210326060303-6b1517762897 to 0.17.0 #20

Bump golang.org/x/net from 0.0.0-20210326060303-6b1517762897 to 0.17.0

Bump golang.org/x/net from 0.0.0-20210326060303-6b1517762897 to 0.17.0 #20

Workflow file for this run

name: testing
on:
push:
branches:
- 'main'
tags:
- 'v*'
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Set up Go
uses: actions/[email protected]
with:
go-version: '1.17'
id: go
- name: Check out code into the Go module directory
uses: actions/[email protected]
- name: Get dependencies
run: |
go mod download
sudo apt-get install -y xorriso
- name: Build
run: |
go build -v .
test:
name: Testing
needs: build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/[email protected]
with:
go-version: '1.17'
id: go
- name: Check out code into the Go module directory
uses: actions/[email protected]
- name: Get dependencies
run: |
go mod download
- name: Make Test
run: |
make testacc
- name: Make Vet
run: |
make vet