Skip to content

Added proper tests and docs #13

Added proper tests and docs

Added proper tests and docs #13

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: ["main"]
jobs:
tests:
strategy:
matrix:
python-version: ['3.10']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pdm sync -d
- name: Run Tests
run: |
CRYPTOCOMPARE_APIKEY=${{secrets.CRYPTOCOMPARE_APIKEY}} MINTSCAN_APIKEY=${{secrets.MINTSCAN_APIKEY}} pdm run all