From e4a1c21749d42fcdf4c6ce89899d62a2501331ff Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Thu, 29 Oct 2020 14:04:28 +0100 Subject: Run all CI build pipelines on pull request --- .github/workflows/simulator.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/simulator.yml (limited to '.github/workflows/simulator.yml') diff --git a/.github/workflows/simulator.yml b/.github/workflows/simulator.yml deleted file mode 100644 index 8174ae3a..00000000 --- a/.github/workflows/simulator.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Simulator - -on: - push: - paths: - - 'simulator/**' - -defaults: - run: - working-directory: simulator - -jobs: - build: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest] - java: [14] - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - name: Set up JDK - uses: actions/setup-java@v1 - with: - java-version: ${{ matrix.java }} - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - uses: actions/cache@v1 - with: - path: ~/.gradle/caches - key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} - restore-keys: | - ${{ runner.os }}-gradle- - - name: Build with Gradle - run: ./gradlew assemble - - name: Check with Gradle - run: ./gradlew check --info -- cgit v1.2.3