We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d625737 commit a246085Copy full SHA for a246085
1 file changed
.github/workflows/acceptance.yaml
@@ -0,0 +1,20 @@
1
+name: Acceptance Tests
2
+
3
+on:
4
+ workflow_dispatch:
5
+ schedule:
6
+ - cron: '0 6 * * *' # Daily at 6am UTC
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
14
+ - name: Set up Python
15
+ uses: actions/setup-python@v5
16
+ with:
17
+ python-version: '3.12'
18
19
+ - name: Placeholder
20
+ run: echo "Tests workflow placeholder - will be expanded"
0 commit comments