aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/dokka-examples.yml
AgeCommit message (Collapse)Author
2023-01-30Add concurrency cancellation for test/build GitHub Actions (#2710)aSemy
The GitHub Actions build queue can get 'stacked up' if there are a few smaller commits in quick succession. Since the actions take some time, some small commits can cause the GHA build queue to get congested. This adds a 'concurrency' check for GitHub actions. It means that if a newer trigger comes in (for example, if you make two commits in a row on a PR), then the first job will be cancelled, allowing for the new job to run. This helps save energy, and for faster feedback in PRs. Reference docs: https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-concurrency-to-cancel-any-in-progress-job-or-run
2023-01-19Revise README documentation for examples and plugins (#2736)Ignat Beresnev
2022-12-13Enable caching Maven dependencies for `setup-java` GitHub Action (#2722)aSemy
2022-03-24Optimize CI a bit (#2385)Goooler
* Bump actions/checkout to v3 * Bump actions/setup-java to v3 * Use gradle-build-action * Merge validation into check.yml * Reformat * Trim blank lines * Use https * Cleanup * Fix * Remove names * Cleanup * Rename validate to validate-wrapper * Use cirrus-actions/rebase@v1.5 * Use cirrus-actions/rebase@1.5
2021-09-22Bump setup-java github actions to v2 (#2151)Goooler
2021-07-28Migrate Dokka examples to Dokka repo (KT-47798) (#2030)vmishenev
* Migrate Dokka examples to Dokka repo (KT-47798) * Configure workflow of examples checking * Add workflow to deploy examples