build(deps): bump alpine from 1e42bbe
to 8a1f59f
in /integration-test
#1179
Workflow file for this run
This file contains hidden or 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: CI Build and Test for PR | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: check format | |
run: make check_format | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: build and test | |
run: make docker_tests | |
precommits: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: "3.9" | |
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
with: | |
go-version: "1.23.9" | |
- name: run pre-commits | |
run: | | |
make precommit_install | |
pre-commit run -a | |
# If previous stage fails, print resolution steps | |
- if: ${{ failure() }} | |
name: Read for resolution steps | |
run: | | |
echo "Pre-commits failed! Run 'make precommit_install' then 'pre-commits run -a' to fix." | |
exit 1 |