Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ogulcan keskin committed Sep 15, 2023
1 parent 9f90d4b commit 831dda9
Showing 1 changed file with 5 additions and 28 deletions.
33 changes: 5 additions & 28 deletions .github/workflows/pullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,44 +8,21 @@ on:

jobs:
test:
runs-on: macos-11
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v3

- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable

- uses: ruby/setup-ruby@v1

- name: Install Bundler
run: gem install bundler

- name: Install gems
run: bundle install

- name: Swift Packages Cache
uses: actions/cache@v2
id: cache
with:
path: |
Build/SourcePackages
Build/Build/Products
key: ${{ runner.os }}-deps-v1-${{ hashFiles('BILDsolid.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved') }}
restore-keys: ${{ runner.os }}-deps-v1-

- name: Run Tests (No Cache)
if: steps.setup.outputs.cache-hit != 'true'
run: bundle exec fastlane unit_test

- name: Run Tests (Cache)
if: steps.setup.outputs.cache-hit == 'true'
run: bundle exec fastlane unit_test skip_package_dependencies_resolution:true


- name: Run Fastlane
run: bundle exec fastlane tests

0 comments on commit 831dda9

Please sign in to comment.