-
Notifications
You must be signed in to change notification settings - Fork 19
56 lines (53 loc) · 1.55 KB
/
tests.yml
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
name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.22', '1.23']
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
# clone in the gopath
path: src/github.com/${{ github.repository }}
- uses: actions/setup-go@v2
with:
stable: false
go-version: ${{ matrix.go }}
- run: |
echo "GOPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
- run: |
cd $GITHUB_WORKSPACE/src/github.com/${{ github.repository }}/cmd/irc-slack
make
./irc-slack --version
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.22', '1.23']
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
# clone in the gopath
path: src/github.com/${{ github.repository }}
- uses: actions/setup-go@v2
with:
stable: false
go-version: ${{ matrix.go }}
- run: |
echo "GOPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
- run: |
cd $GITHUB_WORKSPACE/src/github.com/${{ github.repository }}
go get -v -t ./...
echo "" > coverage.txt
for d in $(go list ./...); do
go test -v -race -coverprofile=profile.out -covermode=atomic "${d}"
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
done
bash <(curl -s https://codecov.io/bash) -c -f coverage.txt -F unittest