Skip to content

Bump commonmarker from 0.23.9 to 0.23.10 in /docs #418

Bump commonmarker from 0.23.9 to 0.23.10 in /docs

Bump commonmarker from 0.23.9 to 0.23.10 in /docs #418

Workflow file for this run

name: Build and Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build-and-test-sdk:
name: Build and Test SDK Project
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: 11
distribution: 'zulu'
- name: Lint
run: ./gradlew afterpay:lintDebug afterpay:ktlint
- name: Unit Tests
run: ./gradlew afterpay:testDebugUnitTest
build-example:
name: Build Example Project
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: 11
distribution: 'zulu'
- name: Build and Lint
run: ./gradlew example:buildDebug example:lintDebug example:ktlint