Adds DisplayItems to Google Pay request #2198
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: Static Analysis | |
| on: [pull_request, workflow_dispatch] | |
| concurrency: | |
| group: static-analysis-${{ github.event.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| android_lint: | |
| name: Android Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v2 | |
| - name: Set up Java 17 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '17' | |
| distribution: 'zulu' | |
| - name: Lint | |
| run: ./ci lint |