Skip to content

Also run ci when ci changes #1

Also run ci when ci changes

Also run ci when ci changes #1

Workflow file for this run

name: Python
on:
push:
paths:
- "openapi.yaml"
- "python/remotebmi/**"
- .github/workflows/python.yml
pull_request:
paths:
- "openapi.yaml"
- "python/remotebmi/**"
- .github/workflows/python.yml
jobs:
python:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- name: Install ruff
run: pip install ruff
- name: Run ruff
run: ruff check python/remotebmi