Skip to content

build(deps): bump golang.org/x/net from 0.10.0 to 0.17.0 in /example #664

build(deps): bump golang.org/x/net from 0.10.0 to 0.17.0 in /example

build(deps): bump golang.org/x/net from 0.10.0 to 0.17.0 in /example #664

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: ["1.19","1.20"]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up Golang ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
id: go
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.52
- name: Test
env:
TZ: Asia/Shanghai
run: |
make test
bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN}}