Skip to content

Bump pyinstaller from 6.3.0 to 6.5.0 #67

Bump pyinstaller from 6.3.0 to 6.5.0

Bump pyinstaller from 6.3.0 to 6.5.0 #67

Workflow file for this run

name: Black
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Stylish the code with black through poethepoet
run: poetry run poe black