Skip to content

chore: Move publishing to custom poetry #529

chore: Move publishing to custom poetry

chore: Move publishing to custom poetry #529

Workflow file for this run

name: Ruff and Black
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff black
- name: Analysing the code with ruff and black
run: |
ruff $(git ls-files '*.py')
black $(git ls-files '*.py')