build workflow testing

This commit is contained in:
Alexandr Goncharov 2020-06-24 20:56:42 +03:00 committed by GitHub
parent e59cc7dc0d
commit 780aa86403
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ jobs:
Xcode: Xcode:
strategy: strategy:
matrix: matrix:
xcode_version: ['11.3', '11.4'] xcode_version: ['11.4']
runs-on: macos-latest runs-on: macos-latest
env: env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app
@ -30,12 +30,12 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: swift -version - run: swift -version
- run: swift package clean - run: swift package clean
- run: swift test -v -enable-code-coverage - run: swift test -v --enable-code-coverage
Linux: Linux:
strategy: strategy:
matrix: matrix:
tag: ['5.1', '5.2'] tag: ['5.2']
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: swift:${{ matrix.tag }} image: swift:${{ matrix.tag }}