Updates from project template
This commit is contained in:
21
.github/workflows/nightly.yml
vendored
Normal file
21
.github/workflows/nightly.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: Swift nightly build
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 1 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
linux:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
image: ['nightly-5.4-bionic', 'nightly-5.4-focal', 'nightly-5.4-centos8', 'nightly-5.4-amazonlinux2']
|
||||
container:
|
||||
image: swiftlang/swift:${{ matrix.image }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Test
|
||||
run: |
|
||||
swift test --enable-test-discovery --enable-code-coverage --sanitize=thread
|
||||
Reference in New Issue
Block a user