We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a218f6 commit 27bad12Copy full SHA for 27bad12
.github/workflows/ci.yml
@@ -9,13 +9,21 @@ on:
9
jobs:
10
test:
11
runs-on: ubuntu-latest
12
+
13
steps:
- - uses: actions/checkout@v3
14
+ - name: Checkout Repository
15
+ uses: actions/checkout@v3
16
17
- name: Set up Python
18
uses: actions/setup-python@v4
19
with:
- python-version: '3.9'
- - name: Install dependencies
- run: pip install poetry && poetry install
20
- - name: Run tests
21
- run: pytest --cov=jup_ag_sdk
+ python-version: "3.10"
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