Merge pull request #33 from ole/fix-lastWhere #6
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
# GitHub actions documentation: | |
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
# | |
# List of installed software for GitHub actions: | |
# https://docs.github.com/en/actions/reference/software-installed-on-github-hosted-runners | |
name: SwiftPM Mac | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
macos-swiftpm: | |
name: Build and run tests | |
runs-on: macOS-latest | |
# Set DEVELOPER_DIR to customize Xcode version | |
# env: | |
# DEVELOPER_DIR: /Applications/Xcode_12.app | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Print Swift version | |
run: swift --version | |
- name: Run SwiftPM tests | |
run: swift test |