Sha256: 80fc7374b124120dc03ca40a1e95df7dc2b33c23628f3ebaa6b8d0762c3179c9

Contents?: true

Size: 781 Bytes

Versions: 4

Compression:

Stored size: 781 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 }}
      PR_NUMBER: ${{ github.event.number }}
    steps:
      - uses: actions/checkout@v3.3.0

      - uses: actions/setup-python@v4.5.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

4 entries across 4 versions & 1 rubygems

Version Path
xcmonkey-1.3.1 .github/workflows/test.yml
xcmonkey-1.3.0 .github/workflows/test.yml
xcmonkey-1.2.0 .github/workflows/test.yml
xcmonkey-1.1.0 .github/workflows/test.yml