Skip to content

Commit 2ee1f55

Browse files
Create main.yml
1 parent ef7319f commit 2ee1f55

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/main.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Run tests
2+
3+
on: push
4+
5+
jobs:
6+
tests:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Clone repository
10+
uses: actions/checkout@v4
11+
# https://github.com/actions/setup-python
12+
- name: Install Python
13+
uses: actions/setup-python@v5
14+
with:
15+
python-version: "3.12"
16+
cache: pip
17+
- name: Install dependencies
18+
run: pip install -r requirements.txt
19+
- name: Run tests
20+
# https://pytest-cov.readthedocs.io/en/latest/readme.html
21+
run: pytest --cov
22+
# https://github.com/astral-sh/ruff-action
23+
- name: Run ruff
24+
uses: astral-sh/ruff-action@v3
25+
with:
26+
version: latest

0 commit comments

Comments
 (0)