summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorTakayuki Matsuoka <t-mat@users.noreply.github.com>2022-05-07 07:57:48 (GMT)
committerTakayuki Matsuoka <t-mat@users.noreply.github.com>2022-05-07 07:57:48 (GMT)
commit32ffb163e1a696fe83816e67f353aa2c53c777dd (patch)
tree2fd9cd656769c6a1d182da376ccbcaeb1579074f /.github/workflows/ci.yml
parentce8ee024b240befac4ca8ab12c6cd812f4a7e38b (diff)
downloadlz4-32ffb163e1a696fe83816e67f353aa2c53c777dd.zip
lz4-32ffb163e1a696fe83816e67f353aa2c53c777dd.tar.gz
lz4-32ffb163e1a696fe83816e67f353aa2c53c777dd.tar.bz2
Add virtual environment checking for Ubuntu 22.04
GitHub Actions recently provides public beta version of Ubuntu 22.04 https://github.com/actions/virtual-environments/issues/5490 This change set just adds environment checking matrix for further changes.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 54ea2b6..33319ce 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -666,6 +666,7 @@ jobs:
matrix:
include: [
{ os: ubuntu-latest, }, # https://github.com/actions/virtual-environments/
+ { os: ubuntu-22.04, }, # https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2204-Readme.md
{ os: ubuntu-20.04, }, # https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-Readme.md
{ os: ubuntu-18.04, }, # https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu1804-Readme.md
]