Skip to content

chore(deps): bump golang.org/x/net from 0.6.0 to 0.9.0 #151

chore(deps): bump golang.org/x/net from 0.6.0 to 0.9.0

chore(deps): bump golang.org/x/net from 0.6.0 to 0.9.0 #151

Workflow file for this run

name: 🔨 Build Test
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
name: Test Builds
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Check out code
uses: actions/checkout@v3
- name: Test
run: go test ./...
- name: Build
run: go build example/main.go