Skip to content

chore(deps-dev): bump eslint from 9.17.0 to 9.18.0 in /docs in the dependencies group #977

chore(deps-dev): bump eslint from 9.17.0 to 9.18.0 in /docs in the dependencies group

chore(deps-dev): bump eslint from 9.17.0 to 9.18.0 in /docs in the dependencies group #977

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