diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 21:07:59 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 21:15:03 +0300 |
commit | 8fbd928fff6c29bdc7be3d5179012998e21e62b4 (patch) | |
tree | 11e7578ff581c01149542a9b53d2a0dac57ebce9 /.github | |
parent | README: update (diff) | |
download | setup-clang-8fbd928fff6c29bdc7be3d5179012998e21e62b4.tar.gz setup-clang-8fbd928fff6c29bdc7be3d5179012998e21e62b4.zip |
workflows/test: use *-latest imagesv1.0
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7587df1..3d3d5de 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,19 +16,25 @@ jobs: platform: [x86, x64] cygwin: [0, 1] hardlinks: [0, 1] - os: [ubuntu-18.04, windows-2019, windows-2016] + os: [ubuntu-18.04, ubuntu-20.04, ubuntu-latest, windows-2016, windows-2019, windows-latest] include: # Prettier run names. - - {os: ubuntu-18.04, name: Ubuntu} - - {os: windows-2019, name: Windows Server 2019} + - {os: ubuntu-18.04, name: Ubuntu 18.04} + - {os: ubuntu-20.04, name: Ubuntu 20.04} + - {os: ubuntu-latest, name: Ubuntu (latest)} - {os: windows-2016, name: Windows Server 2016} + - {os: windows-2019, name: Windows Server 2019} + - {os: windows-latest, name: Windows Server (latest)} - {cygwin: 1, name: Cygwin} exclude: # No Cygwin on Ubuntu. - {os: ubuntu-18.04, cygwin: 1} - # Cygwin is the same on Windows Server 2016 & 2019. + - {os: ubuntu-20.04, cygwin: 1} + - {os: ubuntu-latest, cygwin: 1} + # Cygwin is the same on all Windows Server versions. - {os: windows-2016, cygwin: 1} + - {os: windows-2019, cygwin: 1} # Only test hardlinks on Cygwin. - {cygwin: 0, hardlinks: 1} |