diff options
author | Thibault Gagnaux <tgagnaux@gmail.com> | 2021-11-10 09:31:00 +0100 |
---|---|---|
committer | Thibault Gagnaux <tgagnaux@gmail.com> | 2021-11-10 09:31:00 +0100 |
commit | f3924e8748efe3b035a43ec62eb1ab54179c6221 (patch) | |
tree | 52ad47aa09a66506f9f99d5aefbfdef969cf9086 /.github/workflows/build.yml | |
parent | a5bdb321ebff31e5b2005c6b511fc3873ec9cc7f (diff) | |
download | frege-gradle-plugin-f3924e8748efe3b035a43ec62eb1ab54179c6221.tar.gz frege-gradle-plugin-f3924e8748efe3b035a43ec62eb1ab54179c6221.tar.bz2 frege-gradle-plugin-f3924e8748efe3b035a43ec62eb1ab54179c6221.zip |
chore: updates junit 5.7.2 -> 5.8.1, README and version
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 35 |
1 files changed, 35 insertions, 0 deletions
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 |