Skip to content

chore(deps-dev): bump the dependencies group across 1 directory with 2 updates #979

chore(deps-dev): bump the dependencies group across 1 directory with 2 updates

chore(deps-dev): bump the dependencies group across 1 directory with 2 updates #979

Workflow file for this run

name: test
on:
pull_request:
permissions:
contents: write
jobs:
ui-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: UI lint
working-directory: docs
run: |
npm install
make lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
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 dependencies
run: |
pip install poetry
poetry install --with lint,pytest,dev
- name: Lint and format
run: |
poetry run black --check .
poetry run isort --check-only .
poetry run flake8 .
- name: Test
run: make test