summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2023-05-01 11:45:14 +1000
committerDarren Tucker <dtucker@dtucker.net>2023-05-01 18:04:35 +1000
commitd9687f49682e1e93383fc15ab2018850b2ef38c3 (patch)
treeb979021744c6217d617cb649f1c88e35ae488995
parentaacfd6767497b8fa6d41ecdd3f8e265d1e9ef1f6 (diff)
downloadopenssh-git-d9687f49682e1e93383fc15ab2018850b2ef38c3.tar.gz
Add macos-13 test target.
Also flatten OS list for clarity.
-rw-r--r--.github/workflows/c-cpp.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
index b6cd56c6..d8c509ba 100644
--- a/.github/workflows/c-cpp.yml
+++ b/.github/workflows/c-cpp.yml
@@ -13,7 +13,14 @@ jobs:
fail-fast: false
matrix:
# First we test all OSes in the default configuration.
- target: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12, windows-2019, windows-2022]
+ target:
+ - ubuntu-20.04
+ - ubuntu-22.04
+ - macos-11
+ - macos-12
+ - macos-13
+ - windows-2019
+ - windows-2022
config: [default]
# Then we include any extra configs we want to test for specific VMs.
# Valgrind slows things down quite a bit, so start them first.