fix(deps): update dependency androidx.compose.material3:material3 to … #552
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: Master | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
assemble: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: 17 | |
- name: run assemble | |
run: ./gradlew assemble | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: 17 | |
- name: run kover | |
run: ./gradlew koverMergedXmlReport | |
- uses: codecov/codecov-action@v3 | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: 17 | |
- name: run lintDebug | |
run: ./gradlew :app:lint | |
- name: run detektCheck | |
run: ./gradlew detektCheck | |
- name: upload linting results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: lint | |
path: build/reports/ |