Merge pull request #285 from n3d1117/fix/published-property-fix #50
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: Build & Test | |
on: [push] | |
jobs: | |
linux: | |
name: Test on Linux | |
runs-on: ubuntu-18.04 | |
container: | |
image: swift:${{ matrix.swift_version }} | |
strategy: | |
matrix: | |
swift_version: ["5.0", "5.1"] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Show verion | |
run: swift --version | |
- name: Build | |
run: swift build -v | |
- name: Run tests | |
run: swift test -v | |
macOS: | |
name: Test on macOS | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build | |
run: swift build -v | |
- name: Run tests | |
run: swift test -v |