diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 21:09:55 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 21:09:55 +0300 |
commit | c9c9b72999783a572acc8904405cc24265dc2341 (patch) | |
tree | a129dca58c29e660b260d8cfd6e3d13d547dd45e /.github/workflows/test.yml | |
parent | README: update (diff) | |
download | setup-gcc-c9c9b72999783a572acc8904405cc24265dc2341.tar.gz setup-gcc-c9c9b72999783a572acc8904405cc24265dc2341.zip |
workflows/test: use more Ubuntu distros
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/test.yml | 8 |
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} |