diff options
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: |