Allow to add arbitrary values to PropertyBag
#346
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: "Merge Checks" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
name: "Build Project" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ macos-latest, ubuntu-latest ] | |
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} | |
permissions: | |
contents: read | |
steps: | |
- name: "Checkout sources" | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: "Set up Java" | |
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4 | |
with: | |
distribution: 'temurin' | |
java-version-file: '.java-version' | |
- name: "Setup gradle" | |
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3 | |
- name: "Run Gradle tasks" | |
run: ./gradlew build | |
- name: "Upload 'Test Report (${{ matrix.os }})' artifact" | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4 | |
if: success() || failure() | |
with: | |
name: 'Test Report (${{ matrix.os }})' | |
path: | | |
build/reports/tests/allTests/ |