Skip to content

Fix JavaScript tests. #818

Fix JavaScript tests.

Fix JavaScript tests. #818

Workflow file for this run

name: Python
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
steps:
- uses: actions/[email protected]
with:
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.6.1
- name: Set Poetry config
run: |
poetry config virtualenvs.path ~/.virtualenvs${{ matrix.python-version }}
- name: Install dependencies
run: poetry install
- name: black check
run: poetry run black . --check
- name: ruff check
run: poetry run ruff .
- name: Run all tests
run: poetry run nox