refactor: divide proof operations to subroutines #545
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-obj-c | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
build_test: | |
name: Build & Test Objective-C Wrapper | |
runs-on: macos-latest | |
defaults: | |
run: | |
working-directory: ./wrappers/obj-c | |
steps: | |
- name: Checkout | |
uses: actions/checkout@83b7061638ee4956cf7545a6f7efe594e5ad0247 # [email protected] | |
# Needed to resolve any private git based dependencies like https://github.com/mattrglobal/blstrs | |
- name: Setup SSH Agent | |
uses: webfactory/ssh-agent@836c84ec59a0e7bc0eabc79988384eb567561ee2 # [email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: Build binary | |
run: ./scripts/update-libraries.sh | |
shell: bash | |
- name: Verify podspec | |
working-directory: ./ | |
run: pod lib lint --allow-warnings --verbose |