Tests #9
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: Tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Swift | |
uses: fwal/setup-swift@v1 | |
with: | |
swift-version: '5.9' | |
- name: Build | |
run: swift build -v | |
##- name: Run tests | |
## run: swift test -v | |
## github actions has issues with tests for 5.9 (add it later) |