Skip to content

Fix Automated Repo Checkup issues for third-party samples #1

Fix Automated Repo Checkup issues for third-party samples

Fix Automated Repo Checkup issues for third-party samples #1

Workflow file for this run

# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
sample:
- abusereport
- achievements
- application
- applicationlifecycle
- assetfile
- consent
- deviceapplicationintegrity
- grouppresence
- iap
- languagepack
- leaderboards
- notifications
- rateandreview
- richpresence
- useragecategory
- users
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Build ${{ matrix.sample }}
working-directory: ${{ matrix.sample }}
run: ./gradlew assembleDebug --no-daemon