Merge pull request #1222 from Ralim/ci
Merge json metadata into one file
This commit is contained in:
17
.github/workflows/push.yml
vendored
17
.github/workflows/push.yml
vendored
@@ -48,7 +48,7 @@ jobs:
|
|||||||
- name: Archive ${{ matrix.model }} index file
|
- name: Archive ${{ matrix.model }} index file
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ matrix.model }}.json
|
name: metadata
|
||||||
path: source/Hexfile/${{ matrix.model }}.json
|
path: source/Hexfile/${{ matrix.model }}.json
|
||||||
|
|
||||||
build_multi-lang:
|
build_multi-lang:
|
||||||
@@ -95,7 +95,7 @@ jobs:
|
|||||||
- name: Archive ${{ matrix.model }} index file
|
- name: Archive ${{ matrix.model }} index file
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ matrix.model }}_multi-lang.json
|
name: metadata
|
||||||
path: source/Hexfile/${{ matrix.model }}.json
|
path: source/Hexfile/${{ matrix.model }}.json
|
||||||
|
|
||||||
tests:
|
tests:
|
||||||
@@ -149,3 +149,16 @@ jobs:
|
|||||||
|
|
||||||
- name: Check python with flake8
|
- name: Check python with flake8
|
||||||
run: flake8 Translations
|
run: flake8 Translations
|
||||||
|
|
||||||
|
shellcheck:
|
||||||
|
name: runner / shellcheck
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: shellcheck
|
||||||
|
uses: reviewdog/action-shellcheck@v1
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.github_token }}
|
||||||
|
reporter: github-pr-review # Change reporter.
|
||||||
|
exclude: "./.git/*" # Optional.
|
||||||
|
check_all_files_with_shebangs: "false" # Optional.
|
||||||
|
|||||||
15
.github/workflows/shellcheck.yml
vendored
15
.github/workflows/shellcheck.yml
vendored
@@ -1,15 +0,0 @@
|
|||||||
name: Shell Check
|
|
||||||
on: [pull_request]
|
|
||||||
jobs:
|
|
||||||
shellcheck:
|
|
||||||
name: runner / shellcheck
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: shellcheck
|
|
||||||
uses: reviewdog/action-shellcheck@v1
|
|
||||||
with:
|
|
||||||
github_token: ${{ secrets.github_token }}
|
|
||||||
reporter: github-pr-review # Change reporter.
|
|
||||||
exclude: "./.git/*" # Optional.
|
|
||||||
check_all_files_with_shebangs: "false" # Optional.
|
|
||||||
Reference in New Issue
Block a user