From cdc9e75d848812dc3e83880a6dffca5f6b4e9940 Mon Sep 17 00:00:00 2001 From: jsuchal Date: Fri, 2 Dec 2022 17:35:23 +0100 Subject: [PATCH] Remove tests flow, already present in packaging --- .github/workflows/test.yaml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml deleted file mode 100644 index 45018a061..000000000 --- a/.github/workflows/test.yaml +++ /dev/null @@ -1,36 +0,0 @@ -name: Tests - -on: [push] - -jobs: - build: - runs-on: ${{ matrix.config.os }} - strategy: - matrix: - config: - - os: ubuntu-latest - - os: macos-latest - - os: windows-latest - - steps: - - uses: actions/checkout@v2 - - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - java-version: '17' - distribution: 'liberica' - java-package: 'jdk+fx' - - - name: Cache local Maven repository and JDK cache - uses: actions/cache@v2 - with: - path: | - ~/.m2/repository - target/jdkCache - key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- - - - name: Run test - run: ./mvnw test