Updates from project template

This commit is contained in:
Adam Fowler
2021-03-15 18:22:41 +00:00
parent e0d7e364e8
commit 955e1eb9e4
10 changed files with 501 additions and 2 deletions

21
.github/workflows/nightly.yml vendored Normal file
View 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