name: Format on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: ["3.8", "3.9", "3.10"] steps: - uses: actions/checkout@master - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} - 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