Skip to content

build(deps-dev): bump black from 22.8.0 to 24.3.0 #289

build(deps-dev): bump black from 22.8.0 to 24.3.0

build(deps-dev): bump black from 22.8.0 to 24.3.0 #289

Workflow file for this run

name: On Push
on: push
defaults:
run:
shell: bash
env:
NODE_VERSION: '20'
jobs:
lint-python:
name: Lint Python
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.9, '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- run: npm ci
- uses: ITProKyle/[email protected]
with:
python-version: ${{ matrix.python-version }}
- run: make lint
spell-check:
# There is an official action published by cSpell.
# v1.1.1 was tested but did not function as desired so we are using the CLI.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- run: npm ci
- run: make spellcheck
test-python:
name: Python Tests
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.9, '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: ITProKyle/[email protected]
with:
python-version: ${{ matrix.python-version }}
- run: make test