Skip to content

chore(deps): update dependency black to v24 [security] #518

chore(deps): update dependency black to v24 [security]

chore(deps): update dependency black to v24 [security] #518

name: Application Test Suite
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: Python ${{ matrix.python-version }} (${{ matrix.os }})
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry ${{ env.POETRY_VERSION }}
run: |
python3 -m pip install --user pipx
python3 -m pipx ensurepath
pipx install poetry==${{ env.POETRY_VERSION }}
env:
POETRY_VERSION: "1.2.2"
- name: Install Task
uses: arduino/setup-task@v1
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run tests
run: task test