From 089763a585f2b6ffe1132c04966304be747cbeaa Mon Sep 17 00:00:00 2001 From: Caleb Hulbert Date: Fri, 16 Aug 2024 09:47:20 -0400 Subject: [PATCH] ci: remove platform test redundant, now handled by [build] workflow --- .github/workflows/platform-test.yml | 30 ----------------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/platform-test.yml diff --git a/.github/workflows/platform-test.yml b/.github/workflows/platform-test.yml deleted file mode 100644 index 2b02efef..00000000 --- a/.github/workflows/platform-test.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: test - -on: - push: - branches: - - master - tags: - - "*-[0-9]+.*" - pull_request: - branches: - - master - workflow_dispatch: - -jobs: - build: - strategy: - matrix: - os: [ubuntu-latest, windows-latest] - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v2 - - name: Set up Java - uses: actions/setup-java@v2 - with: - java-version: '8' - distribution: 'zulu' - cache: 'maven' - - name: Maven Test - run: mvn -B clean test --file pom.xml