From f3924e8748efe3b035a43ec62eb1ab54179c6221 Mon Sep 17 00:00:00 2001 From: Thibault Gagnaux Date: Wed, 10 Nov 2021 09:31:00 +0100 Subject: chore: updates junit 5.7.2 -> 5.8.1, README and version --- .github/workflows/build.yml | 35 +++++++++++++++++++++++++++++++++++ .github/workflows/main.yml | 35 ----------------------------------- 2 files changed, 35 insertions(+), 35 deletions(-) create mode 100644 .github/workflows/build.yml delete mode 100644 .github/workflows/main.yml (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..c82e9d6 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,35 @@ +name: Test +on: + push: + branches: [ main, develop ] + pull_request: + branches: [ main, develop ] + workflow_dispatch: + +jobs: + ci: + name: ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [macos-10.15, ubuntu-20.04, windows-2019] + + steps: + - name: Checkout Repository + uses: actions/checkout@v2.3.4 + + - name: Setup Java 11 + uses: actions/setup-java@v2 + with: + distribution: 'adopt-openj9' + java-version: '11' + + - name: Run Unit & Functional Tests + run: | + if [ "$RUNNER_OS" = "Windows" ]; then + ./gradlew.bat clean check + else + ./gradlew clean check + fi + shell: bash \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index c82e9d6..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Test -on: - push: - branches: [ main, develop ] - pull_request: - branches: [ main, develop ] - workflow_dispatch: - -jobs: - ci: - name: ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [macos-10.15, ubuntu-20.04, windows-2019] - - steps: - - name: Checkout Repository - uses: actions/checkout@v2.3.4 - - - name: Setup Java 11 - uses: actions/setup-java@v2 - with: - distribution: 'adopt-openj9' - java-version: '11' - - - name: Run Unit & Functional Tests - run: | - if [ "$RUNNER_OS" = "Windows" ]; then - ./gradlew.bat clean check - else - ./gradlew clean check - fi - shell: bash \ No newline at end of file -- cgit