New app: Life Counter #6268
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: Build and Test | |
on: | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup build agent | |
run: ./.github/scripts/setup.sh | |
- name: Determine targets | |
id: targets | |
run: ./.github/scripts/determine-targets.sh | |
env: | |
BASE_SHA: ${{ github.event.pull_request.base.sha }} | |
HEAD_SHA: ${{ github.event.pull_request.head.sha }} | |
- name: Check modified apps | |
run: ./.github/scripts/check-apps.sh | |
env: | |
TARGETS: "${{ steps.targets.outputs.targets }}" |