ci: Allow build action to be triggered remotely #10
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: Upgrade pip and install dependencies | |
run: | | |
python3 -m pip install ruff | |
- name: Check linting and formatting using ruff | |
run: | | |
ruff check | |
ruff format --check |