WIP #43
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: Checks | |
on: [push] | |
jobs: | |
test: | |
runs-on: macos-12 | |
steps: | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: "13.3" | |
- uses: actions/checkout@v2 | |
- name: Run test | |
run: fastlane test | |
cocoapods-lint: | |
runs-on: macos-12 | |
steps: | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: "13.3" | |
- uses: actions/checkout@v2 | |
- name: Lint Cocoapods | |
run: pod lib lint --allow-warnings | |
swiftpm: | |
runs-on: macos-12 | |
steps: | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: "13.3" | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: swift build -v |