name: Format on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - name: Set up Python uses: actions/setup-python@v3 with: python-version: "3.10" - name: Install poetry run: | python -m pip install --upgrade pip pip install poetry - name: Install dependencies run: | poetry lock && poetry install --with cpu - name: Run CI run: | make lint