diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-10-29 14:04:28 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-11-03 19:35:16 +0100 |
| commit | e4a1c21749d42fcdf4c6ce89899d62a2501331ff (patch) | |
| tree | 0902644e580cdd522ec69bfa8df8bc32331ccaa5 /.github/workflows/simulator.yml | |
| parent | cb50c427098cd73b0d4de930d35c5976f2ae919f (diff) | |
Run all CI build pipelines on pull request
Diffstat (limited to '.github/workflows/simulator.yml')
| -rw-r--r-- | .github/workflows/simulator.yml | 37 |
1 files changed, 0 insertions, 37 deletions
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 |
