Skip to content

Commit 6ca2996

Browse files
author
stuffacc
committed
tests
1 parent 6e31449 commit 6ca2996

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/simple-test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# .github/workflows/simple-test.yml
2+
name: Simple Test
3+
4+
on:
5+
push:
6+
branches: [ heap_sort ]
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v4
14+
with:
15+
python-version: '3.12.3'
16+
- run: pip install pytest
17+
- run: pytest test_heap_sort.py -v

0 commit comments

Comments
 (0)