We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9259871 commit d3bbceaCopy full SHA for d3bbcea
1 file changed
.github/workflows/smoke-ens.yml
@@ -0,0 +1,18 @@
1
+name: smoke-ens
2
+
3
+on:
4
+ workflow_dispatch:
5
+ schedule:
6
+ - cron: "0 10 * * *" # daily at 10:00 UTC
7
8
+jobs:
9
+ smoke:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - name: Install jq + curl
14
+ run: sudo apt-get update && sudo apt-get install -y jq curl
15
+ - name: ENS strict verify smoke
16
+ env:
17
+ RUNTIME_BASE: https://runtime.commandlayer.org
18
+ run: bash scripts/smoke-ens.sh
0 commit comments