Bump polars and set minimum version to avoid kernal panic bug (#68) #224
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run-code-checks | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
run-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: Set up Python 🐍 | |
uses: actions/setup-python@v5 | |
with: | |
cache: pip | |
- name: Install dependencies 📦️ | |
run: | | |
pip install --upgrade pip | |
pip install -r requirements/requirements-dev.txt | |
pip install -e . | |
- name: Lint 🧹 | |
run: ruff check | |
- name: Run unit tests 🧪 | |
run: | | |
pytest -k unit | |