mirror of
https://github.com/DifferentiableUniverseInitiative/JaxPM.git
synced 2025-04-15 07:30:55 +00:00
21 lines
490 B
YAML
21 lines
490 B
YAML
name: Code Formatting
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v3
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip isort
|
|
python -m pip install pre-commit
|
|
- name: Run pre-commit
|
|
run: python -m pre_commit run --all-files
|