Skip to content

Bump ruff from 0.0.124 to 0.0.276 #127

Bump ruff from 0.0.124 to 0.0.276

Bump ruff from 0.0.124 to 0.0.276 #127

Workflow file for this run

name: Tests
on:
pull_request:
jobs:
check_version:
name: Check what-to-eat version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check version
uses: ./.github/actions/check-versions
with:
token: ${{ secrets.GITHUB_TOKEN }}
ruff:
name: Run ruff linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run ruff linter
run: ruff what_to_eat
mypy:
name: Run mypy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy
- name: Run mypy
run: mypy what_to_eat
pre-commit:
name: Run pre-commit
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Run pre-commit
uses: pre-commit/[email protected]
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install and configure Poetry
uses: snok/install-poetry@v1
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
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 --no-root
- name: Test with pytest
run: poetry run pytest