New pass to dissolve done ports of cells being invoked in comb groups #7450
This file contains 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: Format | |
on: | |
push: # allow for all branches, so forks can also validate on their own | |
pull_request: | |
branches: [main] | |
jobs: | |
format: | |
name: Check Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install stable | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
components: rustfmt, clippy | |
- name: Check formatting | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check | |
- name: Clippy version | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --version | |
- name: Run clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --all --all-targets -- --deny warnings | |
lint: | |
name: Python Linting | |
needs: format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Formatting check | |
uses: astral-sh/ruff-action@v3 | |
with: | |
args: "format --check" | |
- name: Linting check | |
uses: astral-sh/ruff-action@v3 | |
with: | |
args: "check" |