summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyooooooga <eial5q265e5@gmail.com>2021-10-09 14:16:48 +0900
committerJesse Duffield <jessedduffield@gmail.com>2021-10-17 11:00:20 +1100
commit9619d3447f6dba88a0ec0c621270130d0964907c (patch)
treeb341ae2309c03dec5c0b2fcfb4ba20f9f5f1d85f
parent4171b7613c9f935aa90e9a1fe70424e1a4bfd50e (diff)
Run tests on Windows
-rw-r--r--.github/workflows/ci.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 14857c44d..066322b58 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -8,7 +8,14 @@ on:
jobs:
ci:
- runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ os:
+ - ubuntu-latest
+ - windows-latest
+ name: ci - ${{matrix.os}}
+ runs-on: ${{matrix.os}}
env:
GOFLAGS: -mod=vendor
steps:
@@ -27,7 +34,7 @@ jobs:
${{runner.os}}-go-
- name: Test code
run: |
- ./test.sh
+ bash ./test.sh
build:
runs-on: ubuntu-latest
env: