Skip to content
This repository has been archived by the owner on Sep 8, 2023. It is now read-only.

Bump golang.org/x/net from 0.8.0 to 0.15.0 #756

Bump golang.org/x/net from 0.8.0 to 0.15.0

Bump golang.org/x/net from 0.8.0 to 0.15.0 #756

Workflow file for this run

name: test
on:
push:
pull_request:
jobs:
test:
name: test on ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
go:
- "1.18"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: test
run: make test
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov
parallel: true
flag-name: OS-${{ matrix.os }}-Go-${{ matrix.go }}
# notifies that all test jobs are finished.
finish:
if: always()
needs: test
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true