Nightly #1904
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: Nightly | |
on: | |
push: | |
branches: [main] | |
paths: | |
- '.github/workflows/nightly.yml' | |
- 'Package*' | |
- 'Sources/**/*.[ch]' | |
- 'Sources/**/*.swift' | |
- 'Sources/**/module.modulemap' | |
- 'Tests/**/*.swift' | |
- 'Tests/**/*.ya?ml' | |
pull_request: | |
paths: | |
- '.github/workflows/nightly.yml' | |
- 'Package*' | |
- 'Sources/**/*.[ch]' | |
- 'Sources/**/*.swift' | |
- 'Sources/**/module.modulemap' | |
- 'Tests/**/*.swift' | |
- 'Tests/**/*.ya?ml' | |
schedule: | |
- cron: '0 4 * * *' | |
jobs: | |
Nightly: | |
runs-on: ubuntu-latest | |
container: | |
image: swiftlang/swift:nightly | |
steps: | |
- uses: actions/checkout@v3 | |
- run: swift --version | |
- run: YAMS_DEFAULT_ENCODING=UTF16 swift test --parallel | |
- run: YAMS_DEFAULT_ENCODING=UTF8 swift test --parallel |