Skip to content

build(deps-dev): bump vite from 5.4.3 to 5.4.6 in /docs #2390

build(deps-dev): bump vite from 5.4.3 to 5.4.6 in /docs

build(deps-dev): bump vite from 5.4.3 to 5.4.6 in /docs #2390

Workflow file for this run

name: Check
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-20.04, macOS-10.15, windows-2019]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pip install poetry
- name: Set up cache
uses: actions/cache@v4.0.0
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
make install
- name: Run tests
run: |
make test
- name: Run style checks
run: |
make check-codestyle