summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorGravatar t8952024-01-11 21:53:11 -0500
committerGravatar t8952024-01-13 17:41:01 -0500
commitcdeaca73c460fa4a85d2f7d493828711f90e8747 (patch)
tree742072bed52d07dae8aa7a8e6e22d640aca9fdb7 /.github/workflows
parentMerge pull request #12605 from german77/abstract (diff)
downloadyuzu-cdeaca73c460fa4a85d2f7d493828711f90e8747.tar.gz
yuzu-cdeaca73c460fa4a85d2f7d493828711f90e8747.tar.xz
yuzu-cdeaca73c460fa4a85d2f7d493828711f90e8747.zip
android: Move ktlintCheck to yuzu-verify
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/verify.yml8
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: