Skip to content

Commit a246085

Browse files
authored
add placeholder acceptance tests workflow
This workflow is set up to run acceptance tests on a schedule and manually.
1 parent d625737 commit a246085

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/acceptance.yaml

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

Comments
 (0)