Update dependency shfmt to v3.9.0 #69
Workflow file for this run
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: Run pre-commit | |
on: | |
push: | |
branches: [develop, master, main] | |
pull_request: | |
jobs: | |
pre-commit: | |
name: Run pre-commit | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install asdf dependencies | |
uses: asdf-vm/actions/install@v3 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
- uses: azure/setup-helm@v4 | |
with: | |
version: 3.11.0 | |
id: install | |
- name: Install tools | |
shell: bash | |
run: | | |
bash -x ./scripts/github_actions-install_tools.bash | |
- name: run pre-commit | |
uses: pre-commit/[email protected] |