diff options
| author | 2024-01-13 20:23:02 -0500 | |
|---|---|---|
| committer | 2024-01-13 20:23:02 -0500 | |
| commit | da714a362b159cfc02bd606a0dedf0d50f4dfa79 (patch) | |
| tree | 742072bed52d07dae8aa7a8e6e22d640aca9fdb7 /.github | |
| parent | Merge pull request #12605 from german77/abstract (diff) | |
| parent | android: Move ktlintCheck to yuzu-verify (diff) | |
| download | yuzu-da714a362b159cfc02bd606a0dedf0d50f4dfa79.tar.gz yuzu-da714a362b159cfc02bd606a0dedf0d50f4dfa79.tar.xz yuzu-da714a362b159cfc02bd606a0dedf0d50f4dfa79.zip | |
Merge pull request #12666 from t895/ktlint-yuzu-verify
android: Move ktlintCheck to yuzu-verify
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/verify.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index c073f3f3f..62eb69aeb 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml | |||
| @@ -13,13 +13,15 @@ jobs: | |||
| 13 | format: | 13 | format: |
| 14 | name: 'verify format' | 14 | name: 'verify format' |
| 15 | runs-on: ubuntu-latest | 15 | runs-on: ubuntu-latest |
| 16 | container: | ||
| 17 | image: yuzuemu/build-environments:linux-clang-format | ||
| 18 | options: -u 1001 | ||
| 19 | steps: | 16 | steps: |
| 20 | - uses: actions/checkout@v3 | 17 | - uses: actions/checkout@v3 |
| 21 | with: | 18 | with: |
| 22 | submodules: false | 19 | submodules: false |
| 20 | - name: set up JDK 17 | ||
| 21 | uses: actions/setup-java@v3 | ||
| 22 | with: | ||
| 23 | java-version: '17' | ||
| 24 | distribution: 'temurin' | ||
| 23 | - name: 'Verify Formatting' | 25 | - name: 'Verify Formatting' |
| 24 | run: bash -ex ./.ci/scripts/format/script.sh | 26 | run: bash -ex ./.ci/scripts/format/script.sh |
| 25 | build: | 27 | build: |