Fix Payment Method Nonce Consumed After 3DS Cancelation by the User #13
Workflow file for this run
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: 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 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'microsoft' | |
- name: Lint | |
run: ./ci lint |