nightlies #351
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: nightlies | |
on: | |
schedule: | |
- cron: '0 0 * * * ' | |
jobs: | |
linux: | |
strategy: | |
fail-fast: false | |
matrix: | |
image: | |
- "swift:nightly" | |
name: Linux | |
runs-on: ubuntu-latest | |
container: | |
image: swiftlang/${{ matrix.image }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Swift Version | |
run: swift --version | |
- name: Release Build | |
run: swift build --enable-test-discovery -v -c release | |
- name: Debug Build | |
run: swift build --enable-test-discovery -v -c debug | |
- name: Debug Test | |
run: swift test --enable-test-discovery -v -c debug |