Skip to content

Commit 20b8838

Browse files
committed
ci: Add dev to daily
1 parent 818579b commit 20b8838

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

.github/workflows/daily.yml

+25-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,31 @@ jobs:
2323
- uses: actions/setup-go@v4
2424
with:
2525
go-version-file: ./go.mod
26-
- run: AUTOBAHN=1 ./ci/test.sh
26+
- run: AUTOBAHN=1 ./ci/test.sh -bench=.
27+
- uses: actions/upload-artifact@v3
28+
with:
29+
name: coverage.html
30+
path: ./ci/out/coverage.html
31+
bench-dev:
32+
runs-on: ubuntu-latest
33+
steps:
34+
- uses: actions/checkout@v4
35+
with:
36+
ref: dev
37+
- uses: actions/setup-go@v4
38+
with:
39+
go-version-file: ./go.mod
40+
- run: AUTOBAHN=1 ./ci/bench.sh
41+
test-dev:
42+
runs-on: ubuntu-latest
43+
steps:
44+
- uses: actions/checkout@v4
45+
with:
46+
ref: dev
47+
- uses: actions/setup-go@v4
48+
with:
49+
go-version-file: ./go.mod
50+
- run: AUTOBAHN=1 ./ci/test.sh -bench=.
2751
- uses: actions/upload-artifact@v3
2852
with:
2953
name: coverage.html

0 commit comments

Comments
 (0)