-
-
Notifications
You must be signed in to change notification settings - Fork 83
69 lines (61 loc) · 1.65 KB
/
Copy pathci.yml
File metadata and controls
69 lines (61 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: build-app
on:
push:
branches:
tags:
paths_ignored:
- ".github/workflows/updater.yml"
- "updater/**"
- "**.md"
pull_request:
paths_ignored:
- ".github/workflows/updater.yml"
- "updater/**"
- "**.md"
permissions:
contents: read
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v6
with:
persist-credentials: false
- name: set up go
uses: actions/setup-go@v6
with:
go-version: "1.25"
id: go
- name: build and test
run: |
go test -v -race -timeout=180s -covermode=atomic -coverprofile=$GITHUB_WORKSPACE/profile.cov_tmp ./...
go build -race ./...
cat $GITHUB_WORKSPACE/profile.cov_tmp | grep -v "mocks" | grep -v "_mock" > $GITHUB_WORKSPACE/profile.cov
env:
TZ: "America/Chicago"
- name: test examples
run: |
go test -race ./...
go build -race ./...
working-directory: _examples/simplechat
env:
TZ: "America/Chicago"
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: latest
- name: golangci-lint on example directory
uses: golangci/golangci-lint-action@v9
with:
version: latest
args: --config ../../.golangci.yml
working-directory: _examples/simplechat
- name: submit coverage
run: |
go install github.com/mattn/goveralls@latest
goveralls -service="github" -coverprofile=$GITHUB_WORKSPACE/profile.cov
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true