Skip to content

Update message for when unable to assign to cluster #17

Update message for when unable to assign to cluster

Update message for when unable to assign to cluster #17

Workflow file for this run

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/