Skip to content

Commit e1e65ad

Browse files
committed
daily.yml: Add to run AUTOBAHN tests daily
1 parent 2a5a566 commit e1e65ad

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/daily.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: daily
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: '42 0 * * *' # daily at 00:42
6+
concurrency:
7+
group: ${{ github.workflow }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
ci:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-go@v4
16+
with:
17+
go-version-file: ./go.mod
18+
- run: AUTOBAHN=1 ./ci/test.sh
19+
- uses: actions/upload-artifact@v3
20+
with:
21+
name: coverage.html
22+
path: ./ci/out/coverage.html

0 commit comments

Comments
 (0)