Skip to content

Update actions/setup-java action to v5 #253

Update actions/setup-java action to v5

Update actions/setup-java action to v5 #253

Workflow file for this run

name: Pipeline
on:
pull_request:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Testing
uses: ./.github/workflows/test.yml
analyze:
name: Testing
uses: ./.github/workflows/analyze.yml
build:
name: Build (${{ matrix.platform }}|${{ matrix.working-directory }}|${{ matrix.flavor }}|flavorize:${{ matrix.flavorize }})
needs:
- test
- analyze
strategy:
matrix:
flavor: [ apple, banana ]
platform: [ android, ios, macos ]
working-directory: [ blank, example ]
include:
- flavorize: false
- flavorize: true
working-directory: blank
uses: ./.github/workflows/build.yml
with:
flavor: ${{ matrix.flavor }}
flavorize: ${{ matrix.flavorize }}
platform: ${{ matrix.platform }}
working-directory: ${{ matrix.working-directory }}
release:
needs:
- build
name: Release
uses: ./.github/workflows/release.yml
publish:
needs:
- release
name: Publish
uses: ./.github/workflows/publish.yml