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 Linux | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
linux-swiftpm: | |
name: Build and run tests | |
runs-on: ubuntu-20.04 | |
# Ubuntu 20.04: Focal | |
# Ubuntu 18.04: Xenial | |
container: swift:focal | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Print Swift version | |
run: swift --version | |
- name: Run tests | |
run: swift test |