Skip to content

Commit e7637e3

Browse files
authored
Create run_tests.yml
1 parent 4324b3e commit e7637e3

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/run_tests.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run tests
2+
3+
on:
4+
push:
5+
branches: ['*']
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-24.04
10+
steps:
11+
- uses: actions/checkout@v3
12+
13+
- name: Free space
14+
run: df -h && rm -rf /opt/hostedtoolcache* && df -h
15+
16+
- name: Run tests
17+
run: |-
18+
pytest tests

0 commit comments

Comments
 (0)