-
Notifications
You must be signed in to change notification settings - Fork 10
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
Showing
6 changed files
with
164 additions
and
104 deletions.
There are no files selected for viewing
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,38 @@ | ||
--- | ||
name: Analysis - Review Dog | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "src/**" | ||
push: | ||
paths: | ||
- "src/**" | ||
|
||
jobs: | ||
cppcheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel Previous Runs | ||
if: github.ref != 'refs/heads/main' | ||
uses: fkirc/skip-duplicate-actions@master | ||
with: | ||
concurrent_skipping: "same_content" | ||
cancel_others: true | ||
|
||
- name: Check out code. | ||
uses: actions/checkout@main | ||
|
||
- name: Setup reviewdog | ||
uses: reviewdog/[email protected] | ||
|
||
- name: Setup cppcheck | ||
run: sudo apt-get update && sudo apt-get install -y cppcheck | ||
|
||
- name: cppcheck | ||
env: | ||
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
cd "$GITHUB_WORKSPACE" | ||
cppcheck --version | ||
reviewdog -reporter=github-pr-check -runners=cppcheck |
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,121 @@ | ||
--- | ||
name: Analysis - Review Dog | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
luac: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel Previous Runs | ||
if: github.ref != 'refs/heads/main' | ||
uses: fkirc/skip-duplicate-actions@master | ||
with: | ||
concurrent_skipping: "same_content" | ||
cancel_others: true | ||
|
||
- name: Check out code. | ||
uses: actions/checkout@main | ||
|
||
- name: Setup reviewdog | ||
uses: reviewdog/[email protected] | ||
|
||
- name: Setup Lua/Luacheck | ||
run: sudo apt-get update && sudo apt-get install -y libluajit-5.1-dev lua-check | ||
|
||
- name: luac | ||
env: | ||
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
cd "$GITHUB_WORKSPACE" | ||
luac -v | ||
reviewdog -reporter=github-pr-check -runners=luac | ||
luacheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code. | ||
uses: actions/checkout@main | ||
|
||
- name: Setup reviewdog | ||
uses: reviewdog/[email protected] | ||
|
||
- name: Setup Lua/Luacheck | ||
run: sudo apt-get update && sudo apt-get install -y libluajit-5.1-dev lua-check | ||
|
||
- name: luacheck | ||
env: | ||
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
luacheck --version | ||
cd "$GITHUB_WORKSPACE" | ||
reviewdog -reporter=github-pr-check -runners=luacheck | ||
shellcheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code. | ||
uses: actions/checkout@main | ||
|
||
- name: shellcheck | ||
uses: reviewdog/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
reporter: github-pr-check | ||
pattern: "*.sh" | ||
exclude: "./.git/*" | ||
|
||
xmllint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code. | ||
uses: actions/checkout@main | ||
|
||
- name: Setup reviewdog | ||
uses: reviewdog/[email protected] | ||
|
||
- name: Setup xmllint | ||
run: sudo apt-get update && sudo apt-get install -y libxml2-utils | ||
|
||
- name: xmllint | ||
env: | ||
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
cd "$GITHUB_WORKSPACE" | ||
xmllint --version | ||
reviewdog -reporter=github-pr-check -runners=xmllint | ||
yamllint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code. | ||
uses: actions/checkout@main | ||
|
||
- name: Run yamllint | ||
uses: reviewdog/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
reporter: github-pr-check | ||
|
||
hadolint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@main | ||
|
||
- name: hadolint | ||
uses: reviewdog/[email protected] | ||
with: | ||
reporter: github-pr-check | ||
|
||
actionlint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@main | ||
|
||
- name: actionlint | ||
uses: reviewdog/action-actionlint@v1 | ||
with: | ||
reporter: github-pr-check |
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 |
---|---|---|
|
@@ -43,12 +43,12 @@ jobs: | |
uses: gittools/actions/gitversion/[email protected] | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
uses: docker/setup-buildx-action@v3.7.1 | ||
with: | ||
install: true | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
uses: docker/login-action@v3.3.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
|
@@ -73,6 +73,8 @@ jobs: | |
tags: ghcr.io/${{ github.repository }}:${{ steps.gitversion.outputs.semVer }} | ||
cache-from: type=gha, scope=${{ github.workflow }} | ||
cache-to: type=gha, scope=${{ github.workflow }} | ||
secrets: | | ||
DEBUG=1 | ||
- name: Image digest | ||
if: ${{ github.event_name == 'push' }} | ||
|
@@ -97,7 +99,7 @@ jobs: | |
uses: gittools/actions/gitversion/[email protected] | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
uses: docker/setup-buildx-action@v3.7.1 | ||
with: | ||
install: true | ||
|
||
|
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
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
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