Skip to content

ruff formatting

ruff formatting #12

Workflow file for this run

name: "Run tests"
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_tests.txt
# - uses: iterative/setup-dvc@v1
# - name: Get data
# run: dvc pull
# env:
# GDRIVE_CREDENTIALS_DATA: ${{ secrets.GDRIVE_CREDENTIALS_DATA }}
- name: Test with pytest
run: |
pip install pytest
pytest -v