Skip to content

⬆️ Bump golang.org/x/net from 0.22.0 to 0.23.0 #66

⬆️ Bump golang.org/x/net from 0.22.0 to 0.23.0

⬆️ Bump golang.org/x/net from 0.22.0 to 0.23.0 #66

Workflow file for this run

name: Go Test
on: [ push, pull_request ]
jobs:
test:
name: Test with Coverage
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.22'
- name: Check out code
uses: actions/checkout@v3
- name: Install dependencies
run: |
go mod download
- name: Run Unit tests
run: |
go test -coverprofile=covprofile -coverpkg="github.com/siyuan-note/riff" ./...
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=covprofile -service=github