From eabac7947af6f020a77d86b038e5fcae8c11de07 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 15 Jun 2021 21:13:01 +0300 Subject: workflows/test: use *-latest images --- .github/workflows/test.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to '.github/workflows/test.yml') 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} -- cgit v1.2.3