Delete key.der #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test and Check | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v1 | |
- name: Java installieren | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Change wrapper permissions | |
run: chmod +x ./uav/gradlew | |
- name: Gradle Test | |
working-directory: ./uav | |
run: ./gradlew test | |
- name: Gradle Check | |
if: success() | |
working-directory: ./uav | |
run: ./gradlew check | |
- name: Upload Reports | |
uses: actions/upload-artifact@v1 | |
if: always() | |
with: | |
name: reports | |
path: uav/infrastructure/build/reports |