Skip to content

Commit eb45b4a

Browse files
committed
added workflows
1 parent 2f3649d commit eb45b4a

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: action/checkout@v3
15+
- name: Set Up Python
16+
uses: actions/setup-python@v4
17+
with:
18+
python-version: '3.12'
19+
20+
- name: Install dependencies
21+
run: |
22+
pip install poetry
23+
poetry install
24+
25+
- name: Run tests
26+
run: |
27+
poetry run pytest

0 commit comments

Comments
 (0)