aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorThibault Gagnaux <tgagnaux@gmail.com>2021-11-10 09:31:00 +0100
committerThibault Gagnaux <tgagnaux@gmail.com>2021-11-10 09:31:00 +0100
commitf3924e8748efe3b035a43ec62eb1ab54179c6221 (patch)
tree52ad47aa09a66506f9f99d5aefbfdef969cf9086 /.github/workflows/main.yml
parenta5bdb321ebff31e5b2005c6b511fc3873ec9cc7f (diff)
downloadfrege-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/main.yml')
-rw-r--r--.github/workflows/main.yml35
1 files changed, 0 insertions, 35 deletions
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