diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-11-19 06:02:25 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-11-19 06:02:25 +0300 |
commit | 85a046d40a8523d82ed5d80b7bda079a76195d23 (patch) | |
tree | 0475e7be5720ac753c5728243193c32a48cbd3e4 /.github/workflows/test.yml | |
parent | README: add CI badge (diff) | |
download | vs-shell-85a046d40a8523d82ed5d80b7bda079a76195d23.tar.gz vs-shell-85a046d40a8523d82ed5d80b7bda079a76195d23.zip |
bit prettier YAML
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/test.yml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e5087e6..94ec72e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,15 +13,13 @@ jobs: strategy: fail-fast: false matrix: - os: ['windows-2019', 'windows-2016'] - arch: ['x86', 'x64'] + os: [windows-2019, windows-2016] + arch: [x86, x64] include: # Prettier run names. - - os: windows-2019 - name: VS 2019 - - os: windows-2016 - name: VS 2017 + - {os: windows-2019, name: VS 2019} + - {os: windows-2016, name: VS 2017} runs-on: '${{ matrix.os }}' @@ -51,4 +49,4 @@ jobs: - name: Build foo.exe run: | cl.exe /EHsc foo.cpp - ./foo.exe + .\foo.exe |