Merge pull request #5122 from JetBrains/KTL-2945-update-links #8243
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: Verify samples | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| verify_samples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '17' | |
| distribution: 'corretto' | |
| - name: Run a verifier | |
| uses: AlexanderPrendota/kotlin-samples-verifier@master | |
| with: | |
| push-repository: 'https://github.com/JetBrains/kotlin-compiler-server' | |
| tag-filter: '#tag="code" & kotlin-runnable="true" & !validate="false"' | |
| push-path: 'src/test/resources/test-compile-data/jvm/kotlin-web-site' | |
| username: '${{ secrets.KOTLIN_WEB_SITE_TOKEN }}' #token with an access to create PR in push-repository and issue in this repository |