Skip to content

Bump the dependencies group with 2 updates #850

Bump the dependencies group with 2 updates

Bump the dependencies group with 2 updates #850

Workflow file for this run

name: test
on:
push
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"]
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