* [proof of concept] support for RoboVM/JVM on iOS(arm64) platform that enables Compose there #378
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: Pull Request CI | |
| on: | |
| workflow_dispatch: # Allow manual triggering | |
| pull_request: # Trigger on all pull requests | |
| jobs: | |
| docker-publish: | |
| name: 'Docker Publish (Dry Run)' | |
| uses: ./.github/workflows/docker-publish.yml | |
| with: | |
| publish: false | |
| permissions: | |
| contents: read | |
| packages: write # Is not used in case of dry run, but required to avoid "The workflow is not valid" error | |
| tests: | |
| name: 'Tests' | |
| uses: ./.github/workflows/tests.yml | |
| skiko-publish: | |
| name: 'Skiko Publish (Dry Run)' | |
| uses: ./.github/workflows/publish-dry-run.yml | |
| docs-publish: | |
| name: 'Documentation Publish (Dry Run)' | |
| uses: ./.github/workflows/docs.yml | |
| with: | |
| publish: false | |
| secrets: inherit |