Skip to content

NEVISACCESSAPP-6267: consolidate gh secrets #81

NEVISACCESSAPP-6267: consolidate gh secrets

NEVISACCESSAPP-6267: consolidate gh secrets #81

Workflow file for this run

name: Verify Pull Request
on:
pull_request:
branches: [ 'main' ]
types: [opened, edited, synchronize, reopened]
workflow_dispatch:
env:
RUBY_VERSION: '3.1'
XCODE_VERSION: '15.4'
jobs:
pr:
runs-on: macos-14
steps:
# Checkout the repository under $GITHUB_WORKSPACE
- name: Checkout Project
uses: actions/checkout@v4
# Ensure correct Xcode version is installed.
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ env.XCODE_VERSION }}
# Set Ruby version and Cache RubyGem dependencies
- name: Cache RubyGem Dependencies
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
# Build & Distribute
- name: Run Fastlane
uses: maierj/[email protected]
with:
lane: 'pr'