fix: Deplyoment target is now 10.13 for the command line tool (requir… #12
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-mac | |
on: [push] | |
jobs: | |
ci: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
run-config: | |
- { scheme: 'macho', configuration: 'Debug', project: 'macho.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=macOS' } | |
- { scheme: 'macho', configuration: 'Release', project: 'macho.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=macOS' } | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: 'recursive' | |
- uses: macmade/[email protected] | |
- uses: macmade/[email protected] | |
if: ${{ always() }} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
with: | |
channel: '#ci' | |
status: ${{ job.status }} | |
title: ${{ matrix.run-config[ 'scheme' ] }} - ${{ matrix.run-config[ 'configuration' ] }} |