Skip to content

Commit

Permalink
refactor: Example project with SPM as dependency manager
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpucik committed Dec 3, 2020
1 parent d89ab53 commit 4107717
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions .github/workflows/ci_pr_example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,7 @@ jobs:
steps:
- name: Checkout the Git repository
uses: actions/checkout@v2
- name: Cache Pods
uses: actions/cache@v1
with:
path: Example/Pods
key: ${{ runner.os }}-example-${{ env.cache-name }}-pods-${{ hashFiles('**/Example/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-example-${{ env.cache-name }}-pods-
${{ runner.os }}-example-${{ env.cache-name }}-
${{ runner.os }}-example-
- name: Cache Gems
uses: actions/cache@v1
with:
path: vendor/bundle
key: ${{ runner.os }}-example-${{ env.cache-name }}-gems-${{ hashFiles('**/Example/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-example-${{ env.cache-name }}-gems-
${{ runner.os }}-example-${{ env.cache-name }}-
${{ runner.os }}-example-
fetch-depth: 10
- name: Build and run example project
run: ./GitHubActions/build.sh example

0 comments on commit 4107717

Please sign in to comment.