Skip to content

Commit 9bcfaba

Browse files
Simplify
1 parent 3bdb01d commit 9bcfaba

2 files changed

Lines changed: 23 additions & 66 deletions

File tree

.github/workflows/cover.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
pull_request:
6+
name: Coverage
7+
jobs:
8+
coverage:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Install Go
12+
uses: actions/setup-go@v5
13+
with:
14+
go-version: '1.24.x'
15+
- name: Checkout code
16+
uses: actions/checkout@v2
17+
- name: Test
18+
run: |
19+
go test -coverprofile=profile.cov ./...
20+
- name: Send coverage
21+
uses: shogo82148/actions-goveralls@v1.10.0
22+
with:
23+
path-to-profile: profile.cov

.github/workflows/coveralls.yml

Lines changed: 0 additions & 66 deletions
This file was deleted.

0 commit comments

Comments
 (0)