fix: remove webrick by updating dependencies #171
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [pull_request, workflow_dispatch, workflow_call] | |
concurrency: | |
group: build-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
cocoapods: | |
name: CocoaPods | |
runs-on: macos-13 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: bundle install | |
- name: Run pod lib lint | |
run: bundle exec fastlane build_pod | |
spm: | |
name: Swift Package Manager | |
runs-on: macos-13 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: bundle install | |
- name: Build SPM test app | |
run: bundle exec fastlane build_spm | |
carthage: | |
name: Carthage | |
runs-on: macos-13 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: bundle install | |
- name: Build Carthage test app | |
run: bundle exec fastlane build_carthage |