mirror of
https://github.com/MessageKit/MessageKit.git
synced 2026-02-06 19:03:19 +00:00
23 lines
656 B
YAML
23 lines
656 B
YAML
name: PR Framework
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
tests:
|
|
name: Build Framework
|
|
runs-on: macOS-latest
|
|
steps:
|
|
- name: Checkout the Git repository
|
|
uses: actions/checkout@v2
|
|
- name: Cache Carthage
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: Carthage
|
|
key: ${{ runner.os }}-framework-${{ env.cache-name }}-carthage-${{ hashFiles('**/Cartfile.resolved') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-framework-${{ env.cache-name }}-carthage-
|
|
${{ runner.os }}-framework-${{ env.cache-name }}-
|
|
${{ runner.os }}-framework-
|
|
- name: Build framework
|
|
run: ./GitHubActions/build.sh framework
|