Skip to content

Temperature settings #324

Temperature settings

Temperature settings #324

Workflow file for this run

name: Linting and type check
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
lintandtype:
name: "Run linting and type check"
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v4
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: "Set up Poetry"
uses: abatilo/actions-poetry@v2
- name: "Set up virtual environment for Poetry"
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- name: "Cache the virtual environment"
uses: actions/cache@v4
with:
path: ./.venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}
- name: "Install"
run: poetry install
- name: "Run black"
run: poetry run black --check infretis
- name: "Run ruff"
run: poetry run ruff infretis
- name: "Run mypy"
run: poetry run mypy -p infretis