Initial commit of v3 alpha1 #164
Workflow file for this run
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: macOS Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
check-changes: | |
name: Check for Changes | |
runs-on: ubuntu-latest | |
outputs: | |
changed: ${{ steps.filter.outputs.changed }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
changed: | |
- '.github/workflows/macos-tests.yml' | |
- '**/*.swift' | |
############ | |
# macOS 11 # | |
############ | |
build-macos-macos-11-matrix: | |
name: macOS Matrix - macOS 11 | |
runs-on: macos-11.0 | |
if: ${{ github.event_name == 'push' || needs.check-changes.outputs.changed == 'true' }} | |
needs: check-changes | |
strategy: | |
matrix: | |
xcode: [ "11.7", "12.4", "12.5.1", "13.0", "13.1", "13.2.1" ] | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build and Test | |
run: swift test | |
build-macos-macos-11: | |
runs-on: ubuntu-latest | |
name: macOS Tests - macOS 11 | |
if: ${{ github.event_name == 'push' || needs.check-changes.outputs.changed == 'true' }} | |
needs: build-macos-macos-11-matrix | |
steps: | |
- name: Check build matrix status | |
if: ${{ needs.build-macos-macos-11-matrix.result == 'failure' }} | |
run: exit 1 | |
############ | |
# macOS 12 # | |
############ | |
build-macos-macos-12-matrix: | |
name: macOS Matrix - macOS 12 | |
runs-on: macos-12 | |
if: ${{ github.event_name == 'push' || needs.check-changes.outputs.changed == 'true' }} | |
needs: check-changes | |
strategy: | |
matrix: | |
xcode: [ "13.1", "13.2.1", "13.3.1", "13.4.1", "14.0.1", "14.1", "14.2" ] | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build and Test | |
run: swift | |
build-macos-macos-12: | |
runs-on: ubuntu-latest | |
name: macOS Tests - macOS 12 | |
if: ${{ github.event_name == 'push' || needs.check-changes.outputs.changed == 'true' }} | |
needs: build-macos-macos-12-matrix | |
steps: | |
- name: Check build matrix status | |
if: ${{ needs.build-macos-macos-12-matrix.result == 'failure' }} | |
run: exit 1 |