-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7ac3d6
commit a0629da
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Pull Request Workflow | ||
run-name: ${{ github.actor }} has triggered a Pull Request Workflow! 🚀 | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- 'master' | ||
|
||
concurrency: | ||
group: ci-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
static-code-analysis: | ||
name: Test Formatting | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Toolchain | ||
run: ./scripts/install_toolchain.sh | ||
|
||
- name: Run linter | ||
run: helm lint yilu-common --set image.tag="test" --set serviceName="ci-test" |