Skip to content

Commit d625737

Browse files
authored
placeholder workflow for branch testing
1 parent 440f678 commit d625737

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: '3.12'
19+
20+
- name: Placeholder
21+
run: echo "Tests workflow placeholder - will be expanded"

0 commit comments

Comments
 (0)