Merge branch 'release/0.5.1' into develop #303
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: Test | |
on: | |
push: | |
branches: [ develop ] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["macos-12"] | |
swift: ["5.6.1"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: swift-actions/setup-swift@v1 | |
with: | |
swift-version: ${{ matrix.swift }} | |
- uses: actions/checkout@v3 | |
- name: Log Swift Version | |
run: swift --version | |
- name: Log Xcode Versions | |
run: ls -la /Applications/ | |
- name: Build for macOS | |
run: swift build -v | |
- name: Run Tests for macOS | |
run: swift test -v |