aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-06-15 21:09:55 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-06-15 21:09:55 +0300
commitc9c9b72999783a572acc8904405cc24265dc2341 (patch)
treea129dca58c29e660b260d8cfd6e3d13d547dd45e
parentREADME: update (diff)
downloadsetup-gcc-c9c9b72999783a572acc8904405cc24265dc2341.tar.gz
setup-gcc-c9c9b72999783a572acc8904405cc24265dc2341.zip
workflows/test: use more Ubuntu distros
-rw-r--r--.github/workflows/test.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 7186ddd..8021673 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -16,15 +16,19 @@ jobs:
platform: [x86, x64]
cygwin: [0, 1]
hardlinks: [0, 1]
- os: [ubuntu-18.04, windows-2019]
+ os: [ubuntu-18.04, ubuntu-20.04, ubuntu-latest, windows-2019]
include:
# Prettier run names.
- - {os: ubuntu-18.04, name: Ubuntu}
+ - {os: ubuntu-18.04, name: Ubuntu 18.04}
+ - {os: ubuntu-20.04, name: Ubuntu 20.04}
+ - {os: ubuntu-latest, name: Ubuntu (latest)}
- {cygwin: 1, name: Cygwin}
exclude:
# No Cygwin on Ubuntu.
- {os: ubuntu-18.04, cygwin: 1}
+ - {os: ubuntu-20.04, cygwin: 1}
+ - {os: ubuntu-latest, cygwin: 1}
# This action is not suitable for Windows hosts, use setup-mingw for
# that.
- {os: windows-2019, cygwin: 0}