Skip to content

Commit

Permalink
Minor update from project-template
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-fowler committed Mar 21, 2021
1 parent b00df59 commit b9f2a0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ jobs:
strategy:
matrix:
image: ['swift:5.3-bionic', 'swift:5.3-focal', 'swift:5.3-amazonlinux2', 'swift:5.3-centos8']

container:
image: ${{ matrix.image }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Test
run: |
swift test --enable-test-discovery --enable-code-coverage --sanitize=thread
swift test --enable-test-discovery --enable-code-coverage --sanitize=thread
- name: Convert coverage files
run: |
llvm-cov export -format="lcov" \
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ jobs:
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
swift test --enable-test-discovery --sanitize=thread

0 comments on commit b9f2a0d

Please sign in to comment.