Skip to content

Bump types-pywin32 from 307.0.0.20241009 to 308.0.0.20241015 (#185) #1091

Bump types-pywin32 from 307.0.0.20241009 to 308.0.0.20241015 (#185)

Bump types-pywin32 from 307.0.0.20241009 to 308.0.0.20241015 (#185) #1091

Workflow file for this run

name: Tests
on: [ push ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
if: github.repository == 'ruflab/shimmer' || (github.event.ref != 'refs/heads/public-clone' && github.event.ref != 'refs/heads/main')
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
- name: Poetry config
run: |
poetry config virtualenvs.create true
poetry config virtualenvs.in-project true
poetry config installer.parallel true
- name: Update torch's source to use CPU
run: |
poetry source add torch-cpu --priority=explicit --no-interaction https://download.pytorch.org/whl/cpu
torch_version=$(poetry show torch --no-ansi | grep 'version' | awk '{print $3}')
poetry add --lock --no-interaction --source torch-cpu "torch@$torch_version"
- 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: poetry install --no-interaction --with test,dev,docs
- name: Ruff Formatting
run: poetry run ruff format --check
- name: Ruff Linter
run: poetry run ruff check
- name: Analysing the code with mypy
run: poetry run mypy --install-types --non-interactive .
- name: Test with pytest
run: poetry run pytest tests/