Skip to content

#98. remove the duplicate elements filter, avoid htmlquery and `xml… #29

#98. remove the duplicate elements filter, avoid htmlquery and `xml…

#98. remove the duplicate elements filter, avoid htmlquery and `xml… #29

Workflow file for this run

name: goveralls
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.16"
- name: Check out code
uses: actions/checkout@v4
- name: Run coverage
run: |
go test -covermode atomic -coverprofile=coverage.out ./...
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=coverage.out -service=github