Skip to content

Commit

Permalink
Add Action to verify PR
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudcosmonaut committed Apr 11, 2021
1 parent cd02b64 commit d79e18e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Check PR

on:
pull_request:
branches: [ main ]

jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Xcode Test
uses: devbotsxyz/xcode-test@v1.1.0
with:
project: RFISO8601DateTime.xcodeproj
scheme: RFISO8601DateTimeTests
configuration: Debug
destination: platform=iOS Simulator,OS=latest,name=iPhone 11
- name: Perform Cocoapod lib lint validation
run: bundle exec pod lib lint --quick --allow-warnings

0 comments on commit d79e18e

Please sign in to comment.