Skip to content

feat(miuix): add full MIUIX parallel UI theme #533

feat(miuix): add full MIUIX parallel UI theme

feat(miuix): add full MIUIX parallel UI theme #533

Workflow file for this run

name: PR Check
permissions:
contents: read
on:
pull_request:
workflow_dispatch:
concurrency:
group: pr-check-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Prepare workspace permissions
run: |
sudo mkdir -p "$GITHUB_WORKSPACE/.gradle" "$GITHUB_WORKSPACE/app/build"
sudo chmod -R a+rwX "$GITHUB_WORKSPACE"
- name: Run JVM unit tests
run: docker compose run --rm --build unit-tests
pr-check:
name: PR Check
runs-on: ubuntu-latest
needs:
- unit-tests
if: always()
steps:
- name: Verify required jobs
run: |
if [ "${{ needs.unit-tests.result }}" != "success" ]; then
echo "::error::Unit Tests finished with result: ${{ needs.unit-tests.result }}"
exit 1
fi