We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a5a566 commit e1e65adCopy full SHA for e1e65ad
.github/workflows/daily.yml
@@ -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
21
+ name: coverage.html
22
+ path: ./ci/out/coverage.html
0 commit comments