File tree Expand file tree Collapse file tree 5 files changed +40
-19
lines changed
Expand file tree Collapse file tree 5 files changed +40
-19
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ - main
8+ pull_request :
9+
10+ jobs :
11+ test :
12+ name : Test (${{ matrix.os }})
13+ runs-on : ${{ matrix.os }}
14+ strategy :
15+ fail-fast : false
16+ matrix :
17+ os :
18+ - ubuntu-latest
19+ - macos-latest
20+ - windows-latest
21+ steps :
22+ - name : Checkout
23+ uses : actions/checkout@v6
24+
25+ - name : Setup Go
26+ uses : actions/setup-go@v6
27+ with :
28+ go-version-file : go.mod
29+ cache : true
30+
31+ - name : Run tests
32+ run : go test ./...
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# screw
22
3- [ ![ Build Status] ( https://travis-ci.org/itchio/screw.svg?branch=master )] ( https://travis-ci.org/itchio/screw )
4-
5- Requires Go 1.13+
3+ [ ![ CI] ( https://github.com/itchio/screw/actions/workflows/ci.yml/badge.svg )] ( https://github.com/itchio/screw/actions/workflows/ci.yml )
64
75** What do we have?** case-preserving case-insensitive filesystems on Windows & macOS.
86
Original file line number Diff line number Diff line change 11module github.com/itchio/screw
22
3- go 1.13
3+ go 1.24
4+
5+ require (
6+ github.com/stretchr/testify v1.5.1
7+ golang.org/x/sys v0.0.0-20200301153931-2f85c7ec1e52
8+ )
49
510require (
611 github.com/davecgh/go-spew v1.1.1 // indirect
712 github.com/kr/text v0.2.0 // indirect
813 github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
9- github.com/stretchr/testify v1.5.1
10- golang.org/x/sys v0.0.0-20200301153931-2f85c7ec1e52
14+ github.com/pmezard/go-difflib v1.0.0 // indirect
1115 gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
1216 gopkg.in/yaml.v2 v2.2.8 // indirect
1317)
Original file line number Diff line number Diff line change 11github.com/creack/pty v1.1.9 /go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E =
2- github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8 =
32github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
43github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
54github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
@@ -16,11 +15,9 @@ github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H
1615github.com/stretchr/testify v1.5.1 /go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA =
1716golang.org/x/sys v0.0.0-20200301153931-2f85c7ec1e52 h1:Fe2jtNSBRfG8Aj/TMNSxQtNw3TQns0pulbct3LgZ1oI =
1817golang.org/x/sys v0.0.0-20200301153931-2f85c7ec1e52 /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
19- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM =
2018gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
2119gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f h1:BLraFXnmrev5lT+xlilqcH8XK9/i0At2xKjWk4p6zsU =
2220gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
23- gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw =
2421gopkg.in/yaml.v2 v2.2.2 /go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI =
2522gopkg.in/yaml.v2 v2.2.8 h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10 =
2623gopkg.in/yaml.v2 v2.2.8 /go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI =
You can’t perform that action at this time.
0 commit comments