Skip to content

chore(deps): bump golang.org/x/net from 0.23.0 to 0.36.0 #153

chore(deps): bump golang.org/x/net from 0.23.0 to 0.36.0

chore(deps): bump golang.org/x/net from 0.23.0 to 0.36.0 #153

Workflow file for this run

name: "Run Tests and Lint Code"
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Run Tests and Lint Code
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "^1.19.0"
- run: make tools
- run:
.bin/go-acc -o coverage.out ./... -- -v -failfast -timeout=20m -tags
sqlite
- run: .bin/gcov2lcov -infile=coverage.out -outfile=coverage.lcov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.lcov