Skip to content
This repository was archived by the owner on Jul 3, 2023. It is now read-only.

Commit 12d7319

Browse files
committed
複数 OS で実行するようにした
1 parent 89ea90e commit 12d7319

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/update-dist.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,25 @@ jobs:
3636
fi
3737
3838
ci:
39-
runs-on: ubuntu-latest
4039
needs: [update-dist]
40+
strategy:
41+
matrix:
42+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#choosing-github-hosted-runners
43+
os:
44+
# windows
45+
- windows-latest
46+
- windows-2022
47+
- windows-2019
48+
# ubuntu
49+
- ubuntu-latest
50+
- ubuntu-22.04
51+
- ubuntu-20.04
52+
# macos
53+
- macos-latest
54+
- macos-12
55+
- macos-11
56+
- macos-10.15
57+
runs-on: ${{ matrix.os }}
4158
steps:
4259
- uses: koki-develop/setup-qiita-cli@main
4360
- run: qiita --version

0 commit comments

Comments
 (0)