Skip to content

Merge pull request #352 from InjectiveLabs/fix/sync_dev_after_v1_7_1 #284

Merge pull request #352 from InjectiveLabs/fix/sync_dev_after_v1_7_1

Merge pull request #352 from InjectiveLabs/fix/sync_dev_after_v1_7_1 #284

Workflow file for this run

name: run-tests
on:
pull_request:
push:
branches: [master, dev]
jobs:
run-tests:
strategy:
matrix:
python: ["3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-13, windows-latest]
runs-on: ${{ matrix.os }}
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install poetry
run: python -m pip install poetry
- name: Cache the virtualenv
id: cache-venv
uses: actions/cache@v4
with:
path: ./.venv
key: ${{ runner.os }}-${{ matrix.python }}-venv-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cache-venv.outputs.cache-hit != 'true'
run: python -m poetry install
- name: Run tests and Generate coverage
run: |
poetry run pytest --cov --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
env_vars: OS,PYTHON