Build And Test (Ubuntu) #28
Workflow file for this run
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: Build And Test (Ubuntu) | |
on: | |
merge_group: | |
env: | |
JAVA_VERSION: 17 | |
jobs: | |
# This name must be equal to the corresponding build_and_test job | |
build-and-test-analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Build and test Analysis | |
uses: ./.github/actions/analysis | |
with: | |
java-version: ${{ env.JAVA_VERSION }} | |
# This name must be equal to the corresponding build_and_test job | |
build-and-test-scanner-android: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Build and test Android Scanner | |
uses: ./.github/actions/scanner-android | |
with: | |
java-version: ${{ env.JAVA_VERSION }} | |
# This name must be equal to the corresponding build_and_test job | |
build-and-test-scanner-soot: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Build and test JavaScanner with Soot | |
uses: ./.github/actions/scanner-soot | |
with: | |
java-version: ${{ env.JAVA_VERSION }} |