Skip to content

Commit 27bad12

Browse files
committed
Project init
1 parent 3a218f6 commit 27bad12

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,21 @@ on:
99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
12+
1213
steps:
13-
- uses: actions/checkout@v3
14+
- name: Checkout Repository
15+
uses: actions/checkout@v3
16+
1417
- name: Set up Python
1518
uses: actions/setup-python@v4
1619
with:
17-
python-version: '3.9'
18-
- name: Install dependencies
19-
run: pip install poetry && poetry install
20-
- name: Run tests
21-
run: pytest --cov=jup_ag_sdk
20+
python-version: "3.10"
21+
22+
- name: Install Poetry
23+
run: pip install poetry
24+
25+
- name: Install Dependencies
26+
run: poetry install --with dev
27+
28+
- name: Run Tests
29+
run: poetry run pytest --cov=jup_ag_sdk

0 commit comments

Comments
 (0)