✅ Tests on did rotate #2930
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: Python code style check | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
style: | |
name: style | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Overwrite .mise.toml # It's not needed in this workflow | |
run: | | |
cat <<EOF > .mise.toml | |
[tools] | |
"pipx:black" = "24.10" | |
"pipx:isort" = "5.13" | |
python = "3.12" | |
uv = "0.4" | |
[settings] | |
pipx_uvx = true | |
EOF | |
- name: Install dependencies | |
uses: jdx/mise-action@v2 | |
with: | |
cache: true | |
experimental: true | |
install: true | |
- name: Check import style with isort | |
run: isort . --check --profile black --diff | |
- name: Check code style with Black | |
run: black . --check --diff | |
- name: Check Tiltfiles with Black | |
run: | | |
find . -type f -name "Tiltfile" | while read -r file; do | |
black --check --diff "$file" | |
done |