mirror of
https://github.com/nasa/fprime.git
synced 2026-04-12 05:19:03 -05:00
* OSAL clean-up * Adding comments to file * Regressing ubuntu-latest to ubuntu-22.04 * Fixing 24.0.4 santizer bug * Fixing regression in cmd sequencer * Fixing other cleanups
24 lines
538 B
YAML
24 lines
538 B
YAML
name: Format Python
|
|
|
|
on:
|
|
push:
|
|
branches: [ devel, release/** ]
|
|
pull_request:
|
|
# The branches below must be a subset of the branches above
|
|
branches: [ devel, release/** ]
|
|
|
|
jobs:
|
|
format:
|
|
name: Format
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup Python 3.8
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: 3.8
|
|
- name: Check formatting
|
|
run: |
|
|
pip install click==8.0.4 black==21.6b0
|
|
black --check --diff ./
|