Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Archive

Archive #49

Workflow file for this run

name: Build
on: [pull_request, push]
jobs:
tests:
name: Build
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: AckeeCZ/[email protected]
- uses: actions/cache@v2
with:
path: Carthage
key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }}
restore-keys: |
${{ runner.os }}-carthage-
- name: Build Carthage dependencies
run: carthage bootstrap --platform iOS --cache-builds --use-xcframeworks
- name: Build Carthage binary
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
carthage build --no-skip-current --platform iOS --cache-builds --use-xcframeworks