feat: added SecCodePLT and fixed some bugs #130
This file contains hidden or 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: Gradle Tests | |
| on: | |
| push: | |
| permissions: | |
| contents: write # dependency submission | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: '21' | |
| - name: Setup Gradle with caching | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Build and run tests | |
| run: ./gradlew test | |
| # The Dependency graph is disabled for the mono repo | |
| #- name: Generate and submit dependency graph | |
| # uses: gradle/actions/dependency-submission@v4 |