Skip to content

gha: build base then permutations; update local bake smoke #38

gha: build base then permutations; update local bake smoke

gha: build base then permutations; update local bake smoke #38

Workflow file for this run

name: Pre-commit
on:
pull_request:
push:
branches: [ "main", "modernization.20251118" ]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install lint dependencies
run: |
sudo apt-get update
sudo apt-get install -y hadolint shellcheck
- name: Run repository pre-commit script (hadolint/shellcheck guard)
run: |
chmod +x scripts/pre_commit.sh
scripts/pre_commit.sh
- name: Run pre-commit
uses: pre-commit/action@v4.0.1
with:
extra_args: --config .pre-commit-config.yaml