Skip to content

Commit d3bbcea

Browse files
authored
Add smoke-ens workflow for daily verification
1 parent 9259871 commit d3bbcea

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/smoke-ens.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)