Update message for when unable to assign to cluster #17
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint and format | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main, "bacpop-*"] | |
| 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 Poetry | |
| uses: snok/install-poetry@v1 | |
| with: | |
| version: 1.8.3 | |
| - name: Install dependencies | |
| run: poetry install --no-interaction --no-root | |
| - name: Lint with ruff | |
| run: poetry run ruff check --output-format=github | |
| - name: Format with ruff | |
| run: poetry run ruff format --check --diff | |
| - name: checking docstrings with docsig | |
| run: poetry run docsig ./beebop/ |