fix: Update IR and correct method summaries selector in trace resolver #13
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: CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: ubuntu:latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK 8 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '17' | |
| distribution: 'corretto' | |
| server-id: github # Value of the distributionManagement/repository/id field of the pom.xml | |
| settings-path: ${{ github.workspace }} # location for the settings.xml file | |
| - name: Run tests | |
| uses: gradle/gradle-build-action@v2 | |
| with: | |
| arguments: check | |
| env: | |
| SEQRA_GITHUB_ACTOR: ${{ secrets.SEQRA_GITHUB_ACTOR }} | |
| SEQRA_GITHUB_TOKEN: ${{ secrets.SEQRA_GITHUB_TOKEN }} | |
| - name: Upload Gradle reports | |
| if: (!cancelled()) | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: gradle-reports | |
| path: '**/build/reports/' | |
| retention-days: 1 |