Skip to content

build(deps): bump golang.org/x/net from 0.9.0 to 0.17.0 (#59) #204

build(deps): bump golang.org/x/net from 0.9.0 to 0.17.0 (#59)

build(deps): bump golang.org/x/net from 0.9.0 to 0.17.0 (#59) #204

Workflow file for this run

---
name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
types: [opened, synchronize, reopened]
merge_group:
types: [checks_requested]
permissions:
contents: read
pull-requests: read
concurrency:
group: ci-${{ github.event.pull_request.head.repo.full_name }}/${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
gotest:
name: go test
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup go
uses: actions/setup-go@v4
with:
go-version: '>=1.19.5'
cache: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
- name: test cover
run: make testcoverfile
- name: upload coverage reports to codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.txt
if: github.event_name != 'merge_group'