diff options
author | nea <romangraef@gmail.com> | 2022-06-14 18:00:19 +0200 |
---|---|---|
committer | nea <romangraef@gmail.com> | 2022-06-15 18:35:34 +0200 |
commit | a859e1cc949bbebf1f8eba1af615047f211536cd (patch) | |
tree | ceeecb03b4156626d9e6dec7f42f3f4a6b189c18 /.github/workflows/infer.yml | |
parent | 8ce504940211a3f6c7069c0b84c922687a1754bb (diff) | |
download | NotEnoughUpdates-a859e1cc949bbebf1f8eba1af615047f211536cd.tar.gz NotEnoughUpdates-a859e1cc949bbebf1f8eba1af615047f211536cd.tar.bz2 NotEnoughUpdates-a859e1cc949bbebf1f8eba1af615047f211536cd.zip |
Run infer on every PRinfering
Diffstat (limited to '.github/workflows/infer.yml')
-rw-r--r-- | .github/workflows/infer.yml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/workflows/infer.yml b/.github/workflows/infer.yml new file mode 100644 index 00000000..f7524223 --- /dev/null +++ b/.github/workflows/infer.yml @@ -0,0 +1,34 @@ +name: Infer + +on: + - pull_request + - workflow_dispatch +jobs: + inferering: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + name: Checkout feature + with: + ref: ${{ github.event.pull_request.head.sha }} + - name: Set up JDK 17 + uses: actions/setup-java@v2 + with: + java-version: 17 + distribution: temurin + cache: gradle + - name: Setup Infer + uses: srz-zumix/setup-infer@v1 + - name: Run Infer on feature + run: ./.github/workflows/inferbuild.sh feature + - uses: actions/checkout@v2 + name: Checkout base + with: + ref: ${{ github.event.pull_request.base.sha }} + clean: false + - name: Run Infer on base + run: ./.github/workflows/inferbuild.sh base + - name: Generate report + run: ./.github/workflows/inferbuild.sh report + |