Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Tests

on:
pull_request:
branches: [master, main]

jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Check-out repository
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install requirements
run: pip install -r requirements.txt
shell: sh

- name: Install dev requirements
run: pip install -r requirements_dev.txt
shell: sh


- name: Run tests
run: python tests/test_sdk.py
shell: sh
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
aiohttp==3.7.4.post0
ujson==4.0.2
pydantic==1.8.2
dexguru-sdk==0.2.6