Trying to fix report discord task #23

Merged
quentinlegot merged 10 commits from patch-report1 into dev 2023-07-26 23:46:29 +02:00
Showing only changes of commit b99bcaa71e - Show all commits

View File

@ -15,17 +15,17 @@ jobs:
build: build:
strategy: strategy:
matrix: matrix:
java: [ '17' ] java: [ '17' ]
# and run on both Linux and Windows # and run on both Linux and Windows
os: [ubuntu-latest, windows-2022] os: [ubuntu-latest, windows-2022]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- name: checkout repository - name: checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: validate gradle wrapper - name: validate gradle wrapper
uses: https://github.com/gradle/wrapper-validation-action@v1 uses: https://github.com/gradle/wrapper-validation-action@v1
- name: setup jdk ${{ matrix.Java }} - name: setup jdk ${{ matrix.Java }}
uses: setup-java@v3 uses: actions/setup-java@v3
with: with:
java-version: ${{ matrix.java }} java-version: ${{ matrix.java }}
distribution: 'oracle' distribution: 'oracle'