ci(deps): update helm release kube-prometheus-stack to v65 #2385
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 static checks | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
format: | |
name: Lint & format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Static check | |
run: | | |
# Install asdf and expose to PATH | |
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.13.1 | |
. $HOME/.asdf/asdf.sh | |
# Add asdf plugins and install tools in .tool-versions | |
make asdf_install | |
# Run checks | |
make validate |