ci: Allow build action to be triggered remotely #12
Workflow file for this run
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: Linting | |
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
- "**.rst" | |
- "**.ipynb" | |
- "**.cff" | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths-ignore: | |
- "**.md" | |
- "**.rst" | |
- "**.ipynb" | |
- "**.cff" | |
branches: | |
- main | |
jobs: | |
lint: | |
if: github.event.pull_request.draft == false | |
name: Linting build for (${{ matrix.python-version }}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest"] | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Python info | |
shell: bash -e {0} | |
run: | | |
which python3 | |
python3 --version | |
- name: Check linting and formatting using ruff | |
run: | | |
python3 -m pip install ruff | |
ruff check || echo "ruff check failed - ensure you have the latest version of ruff (`ruff -V`) installed locally. && exit 1"" | |
ruff format --check || echo "ruff format failed - ensure you have the latest version of ruff (`ruff -V`) installed locally. && exit 1"" |