- Notifications
You must be signed in to change notification settings - Fork45
Bump org.jetbrains.intellij from 1.13.1 to 1.17.4 in /utbot-intellij#5476
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:"UTBot Java: build and run tests" | |
| permissions:read-all | |
| on: | |
| push: | |
| branches: | |
| -'main' | |
| -'unit-test-bot/r**' | |
| pull_request: | |
| branches: | |
| -'main' | |
| -'unit-test-bot/r**' | |
| jobs: | |
| build-and-run-tests: | |
| uses:./.github/workflows/build-and-run-tests-from-branch.yml | |
| secrets:inherit | |
| publish_plugin: | |
| needs:build-and-run-tests | |
| uses:./.github/workflows/publish-plugin-from-branch.yml | |
| with: | |
| # upload artifacts on push action to main only | |
| upload-artifact:${{ github.event_name == 'push' }} | |
| secrets:inherit | |
| publish_cli: | |
| needs:build-and-run-tests | |
| uses:./.github/workflows/publish-cli-from-branch.yml | |
| with: | |
| # upload artifacts on push action to main only | |
| upload-artifact:${{ github.event_name == 'push' }} | |
| secrets:inherit | |
| publish-cli-image: | |
| needs:build-and-run-tests | |
| if:${{ github.event_name == 'push' }} | |
| uses:./.github/workflows/publish-cli-image-from-branch.yml | |
| secrets:inherit |