Fix PsiEnvironment thread safety in SymbolExtractor #59
Workflow file for this run
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: Build | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Configure git for tests | |
| run: | | |
| git config --global user.name "CI" | |
| git config --global user.email "ci@clanker.zone" | |
| git config --global init.defaultBranch main | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: jetbrains | |
| java-version: 17 | |
| - uses: gradle/actions/setup-gradle@v4 | |
| - name: Build | |
| run: ./gradlew build | |
| - name: Coverage report | |
| if: always() | |
| run: ./gradlew koverLog | |
| - name: Upload test results | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results | |
| path: | | |
| build/reports/tests/ | |
| build/reports/kover/ | |
| retention-days: 14 |