diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 21:13:52 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 21:13:52 +0300 |
commit | c5e1777e8393f8673e56286ae99c78eebf8403ad (patch) | |
tree | f1fbff95402ad2ee4aa9118e0061fc14fbcbd2b9 | |
parent | README: update (diff) | |
download | vs-shell-c5e1777e8393f8673e56286ae99c78eebf8403ad.tar.gz vs-shell-c5e1777e8393f8673e56286ae99c78eebf8403ad.zip |
workflows/test: reorder windows images
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 28011ff..907f851 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,13 +13,13 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2019, windows-2016] + os: [windows-2016, windows-2019] 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} runs-on: '${{ matrix.os }}' |