From 6d96ec6821204f203a0481f5e1416afbc695d5cf Mon Sep 17 00:00:00 2001 From: Glease <4586901+Glease@users.noreply.github.com> Date: Wed, 1 Dec 2021 20:00:58 +0800 Subject: Fix typo in file path --- .github/workflow/gradle.yml | 34 ---------------------------------- .github/workflows/gradle.yml | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 34 deletions(-) delete mode 100644 .github/workflow/gradle.yml create mode 100644 .github/workflows/gradle.yml diff --git a/.github/workflow/gradle.yml b/.github/workflow/gradle.yml deleted file mode 100644 index bffb3d2b1b..0000000000 --- a/.github/workflow/gradle.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Build Project - -on: - push: - branches: [ experimental ] - pull_request: - branches: [ experimental ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 11 - uses: actions/setup-java@v2 - with: - java-version: '11' - distribution: 'adopt' - cache: gradle - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - name: Setup the workspace - run: ./gradlew setupCIWorkspace - - name: Build with Gradle - run: ./gradlew build - - test-scala-presence: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Check - uses: mattsb42-meta/not-grep@1.0.0 - with: - config-file: ./.github/test-scala-presence.toml \ No newline at end of file diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 0000000000..e3b06da698 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,34 @@ +name: Build Project + +on: + push: + branches: [ experimental ] + pull_request: + branches: [ experimental ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'adopt' + cache: gradle + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Setup the workspace + run: ./gradlew setupCIWorkspace + - name: Build with Gradle + run: ./gradlew build + + test-scala-presence: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Check + uses: mattsb42-meta/not-grep@1.0.0 + with: + config-file: ./.github/test-scala-presence.toml -- cgit