aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-06-15 21:13:01 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-06-15 21:13:01 +0300
commiteabac7947af6f020a77d86b038e5fcae8c11de07 (patch)
treebba071240d20e8bc8aec389b6696e5618cffb8f2
parentREADME: update (diff)
downloadsetup-mingw-eabac7947af6f020a77d86b038e5fcae8c11de07.tar.gz
setup-mingw-eabac7947af6f020a77d86b038e5fcae8c11de07.zip
workflows/test: use *-latest images
-rw-r--r--.github/workflows/test.yml14
1 files changed, 10 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 5094d31..5136072 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}