This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
Refactor: Use 'by' delegation for mutableStateOf properties (#3517) #1145
This file contains 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: CI Actions tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout GIT | |
uses: actions/checkout@v4 | |
- name: Setup Java SDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '18' | |
- name: Gradle cache | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Test the CI actions "base" | |
run: ./gradlew :ci-actions:base:test | |
- name: Test the CI "issue-assign" action | |
run: ./gradlew :ci-actions:issue-assign:test | |
- name: Test the CI "issue-create-comment" action | |
run: ./gradlew :ci-actions:issue-create-comment:test | |
- name: Test the CI "compose_stability" action | |
run: ./gradlew :ci-actions:compose-stability:test | |
- name: Test the CI "pr-description-check" action | |
run: ./gradlew :ci-actions:pr-description-check:test |