Skip to content

chore(deps-dev): bump black from 24.1.1 to 24.2.0 #121

chore(deps-dev): bump black from 24.1.1 to 24.2.0

chore(deps-dev): bump black from 24.1.1 to 24.2.0 #121

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test-python:
name: Test (Python)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pipx install poetry==1.3.2
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: poetry
- run: poetry install
- run: poetry run black --check .
test-js:
name: Test (JavaScript)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: yarn
- run: yarn
- run: yarn lint