Sha256: 0eed7b3b40939bbb6535001629be4195388206364a6e6f3d97454c9a00c4a398

Contents?: true

Size: 737 Bytes

Versions: 3

Compression:

Stored size: 737 Bytes

Contents

name: Test

on:
  push:
    branches:
      - main
      - develop

  pull_request:
    types: [opened, synchronize]

jobs:
  chat:
    name: Automated Code Review
    runs-on: macos-12
    timeout-minutes: 30
    env:
      GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
    steps:
      - uses: actions/checkout@v3.2.0

      - uses: actions/setup-python@v4.4.0
        with:
          python-version: 3.11
          cache: 'pip'

      - run: bundle install

      - run: brew install sonar-scanner

      - run: brew install facebook/fb/idb-companion

      - run: pip install -r requirements.txt

      - run: bundle exec fastlane code_review

      - run: bundle exec fastlane sonar_upload

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
xcmonkey-1.0.0 .github/workflows/test.yml
xcmonkey-0.3.0 .github/workflows/test.yml
xcmonkey-0.2.0 .github/workflows/test.yml