Create skeleton file for upgraded billing manager #1304
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: Run testsuite with gradle | |
# https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows | |
on: [push, pull_request] | |
jobs: | |
build: | |
# will have android sdk installed, see https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu1804-README.md look for android, 29.0.2 is there woop | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Run corekit tests | |
run: GITHUB_ACTIONS=1 ./gradlew :facebook-core:test -i | |
- name: Run GamingServicesKit tests | |
run: GITHUB_ACTIONS=1 ./gradlew :facebook-gamingservices:test -i | |
- name: Run CommonKit tests | |
run: GITHUB_ACTIONS=1 ./gradlew :facebook-common:test -i | |
- name: Run all tests | |
run: GITHUB_ACTIONS=1 ./gradlew :facebook:test -i |