Skip to content

Bump golang.org/x/net from 0.0.0-20200602114024-627f9648deb9 to 0.7.0 #36

Bump golang.org/x/net from 0.0.0-20200602114024-627f9648deb9 to 0.7.0

Bump golang.org/x/net from 0.0.0-20200602114024-627f9648deb9 to 0.7.0 #36

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: Run Unit Test
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@master
- name: Go 1.17.2
uses: actions/setup-go@v2
with:
go-version: 1.17.2
- name: Parser test
run: go test ./... -v