Cleared anonymous enum comparison error cropping in newer versions of… #2
Workflow file for this run
This file contains hidden or 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: 'ICNS2ICO', configuration: 'Debug', project: 'ICNS2ICO.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=macOS' } | |
| steps: | |
| - run: brew install imagemagick | |
| - uses: actions/checkout@v1 | |
| with: | |
| submodules: 'recursive' | |
| - uses: macmade/action-xcodebuild@v1.0.0 | |
| - uses: macmade/action-slack@v1.0.0 | |
| 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' ] }} |