Skip to content

AND-9484 Moved detekt to separate workflow #4

AND-9484 Moved detekt to separate workflow

AND-9484 Moved detekt to separate workflow #4

Workflow file for this run

name: PR check
on:
pull_request:
branches:
- 'release'
- 'develop'
- 'master'
- 'hotfix/**'
- '*_pre_release'
types:
- opened
- reopened
- synchronize
- ready_for_review
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
ci:
name: ${{ matrix.task }} job
runs-on: [ self-hosted, ARM64, macOS, active-android ]
if: github.event.pull_request.draft == false
strategy:
matrix:
task: [test, detekt]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
token: ${{ secrets.GH_MOBILE_PAT }}
- name: Build Docker image
run: |
docker build --platform linux/arm64 -t tangem_ci_android_environment .
- name: Run ${{ matrix.task }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_ACTOR: ${{ secrets.GITHUB_ACTOR }}
BUNDLE_PATH: vendor/bundle
run: |
docker run --rm \
-e GITHUB_TOKEN \
-e GITHUB_ACTOR \
-e BUNDLE_PATH \
-v ~/.gradle:/root/.gradle \
-v ${{ github.workspace }}:/workspace \
tangem_ci_android_environment \
sh -c "
echo 'Running ${{ matrix.task }}...';
cd /workspace && fastlane ${{ matrix.task }};
"
- name: Build notification
if: failure()
uses: adamkdean/simple-slack-notify@master
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_DVELOPMENT_ANDROID }}
with:
channel: '#development-android'
text: '${{ matrix.task }} #${{ github.run_number }} failed'
color: 'danger'
fields: |
[{ "title": "Action URL", "value": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"}]