Обновление BrightSide #106
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: CI | |
# Controls when the action will run. | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '**' | |
types: [ opened, edited, synchronize, reopened ] | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Init | |
run: | | |
make init | |
- name: Force select xcode 13 | |
run: | | |
sudo xcode-select -switch /Applications/Xcode_13.4.app | |
- name: Build | |
run: | | |
make build | |
- name: SPM Build | |
run: | | |
make spm_build | |
- name: Tests | |
run: | | |
make test | |
- name: Example Build | |
run: | | |
make example_build | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
- name: Pod Lib Lint | |
run: | | |
pod lib lint |