Bump lxml-stubs from 0.4.0 to 0.5.1 #12
Workflow file for this run
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: Tests | |
on: [ push ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11.4" | |
- name: Load cached Poetry install | |
uses: actions/cache@v4 | |
id: cached-poetry | |
with: | |
path: ~/.local | |
key: poetry-0 | |
- name: Install Poetry | |
if: steps.cached-poetry.outputs.cache-hit != 'true' | |
uses: snok/install-poetry@v1 | |
with: | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
installer-parallel: true | |
- name: Load cached venv | |
id: cached-poetry-dependencies | |
uses: actions/cache@v4 | |
with: | |
path: .venv | |
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} | |
- name: Install dependencies | |
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
run: | | |
eval `ssh-agent -s` | |
ssh-add - <<< '${{ secrets.SHIMMER_DEPLOY }}' | |
poetry install --with test,dev | |
poetry run pip install torch torchvision torchdata --index-url https://download.pytorch.org/whl/cpu | |
poetry run pip install lightning | |
- name: Ruff Formatting | |
run: poetry run ruff format --check | |
- name: Ruff Linter | |
run: poetry run ruff check | |
- name: Mypy | |
run: | | |
poetry run mypy --install-types --non-interactive . | |
- name: Pytest | |
run: | | |
poetry run pytest tests/ |