diff options
| author | Takashi Kokubun <takashikkbn@gmail.com> | 2024-07-08 15:40:26 -0700 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2024-07-08 15:40:28 -0700 |
| commit | 9a8454ea5ca2bb4d6540d5c43b8e91e199ed1a8a (patch) | |
| tree | 0d6abe027a2ec2e6fed2fa6df78d244c511c9876 | |
| parent | f811f79b3aa5d1fba3a9a631a802aa1d41fa5dc4 (diff) | |
Fix malformed JSON in macOS CI
| -rw-r--r-- | .github/workflows/macos.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 0a89840436..bab3a17981 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -33,7 +33,7 @@ jobs: matrix: test_task: ['check'] configure: [''] - os: ${{ fromJSON(format('["macos-12","macos-13"{0}]', 'macos-14')) }} + os: ['macos-12', 'macos-13', 'macos-14'] include: - test_task: test-all TESTS=--repeat-count=2 os: macos-14 |
