Skip to content

Commit

Permalink
ci: only test on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
unknwon committed Sep 6, 2020
1 parent b862a1c commit ac10440
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
go-version: [1.13.x, 1.14.x, 1.15.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
Expand Down
2 changes: 1 addition & 1 deletion zip/zip_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ func TestFlush(t *testing.T) {
So(z.AddFile("testdata/testdir.lnk", "testdata/testdir.lnk"), ShouldBeNil)

fmt.Println("Flushing to local file system...")
// So(z.Flush(), ShouldBeNil)
So(z.Flush(), ShouldBeNil)
})

Convey("Do some operation and flush to io.Writer", t, func() {
Expand Down

0 comments on commit ac10440

Please sign in to comment.