Skip to content

build(deps): bump golang.org/x/net from 0.11.0 to 0.13.0 #685

build(deps): bump golang.org/x/net from 0.11.0 to 0.13.0

build(deps): bump golang.org/x/net from 0.11.0 to 0.13.0 #685

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- "Makefile"
- ".github/workflows/test.yaml"
pull_request:
types: [opened, reopened, synchronize]
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- "Makefile"
- ".github/workflows/test.yaml"
env:
GO_VERSION: "1.20.4"
jobs:
test:
name: Unit Testing
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Setup Go Environment
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
id: go
- name: Checkout Source Code
uses: actions/checkout@v3
- name: Go Get dependencies
run: go get -v -t -d ./...
- name: Go Test
run: make test TEST_FLAGS="-coverprofile=coverage.txt -covermode=atomic"
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
file: ./coverage.txt