1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-19 21:28:28 +02:00

Run tests on Windows

This commit is contained in:
Ryooooooga 2021-10-09 14:16:48 +09:00 committed by Jesse Duffield
parent 4171b7613c
commit 9619d3447f

View File

@ -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: