File tree 5 files changed +57
-38
lines changed
5 files changed +57
-38
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ paths-ignore :
6
+ - ' **.md'
7
+ pull_request :
8
+
9
+ jobs :
10
+ build :
11
+ name : Build and test
12
+ runs-on : ubuntu-latest
13
+
14
+ steps :
15
+ - name : Checkout code
16
+ uses : actions/checkout@v3
17
+
18
+ - name : Setup Go
19
+ uses : actions/setup-go@v4
20
+ with :
21
+ go-version : ' 1.20'
22
+
23
+ - name : Setup cache
24
+ uses : actions/cache@v3
25
+ with :
26
+ path : |
27
+ ~/.cache/go-build
28
+ ~/go/pkg/mod
29
+ key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
30
+ restore-keys : |
31
+ ${{ runner.os }}-go-
32
+
33
+ - name : Build
34
+ run : make build
35
+
36
+ - name : Run tests
37
+ run : make test
38
+
39
+ - name : Run app
40
+ run : make run
Original file line number Diff line number Diff line change 1
1
# Duration
2
2
3
- [ ![ CircleCI ] ( https://circleci .com/gh/ mstruebing/duration. svg?style=svg )] ( https://circleci .com/gh/ mstruebing/duration )
3
+ [ ![ CI ] ( https://github .com/mstruebing/duration/actions/workflows/ci.yml/badge. svg )] ( https://github .com/mstruebing/duration/actions/workflows/ci.yml )
4
4
[ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/mstruebing/duration )] ( https://goreportcard.com/report/github.com/mstruebing/duration )
5
5
6
6
1 . [ Why] ( #why )
@@ -32,7 +32,7 @@ would work:
32
32
duration script.sh
33
33
would NOT work:
34
34
duration sleep 5 && sleep 4
35
- ```````````
35
+ ```
36
36
37
37
38
38
### Important
75
75
``` sh
76
76
trizen -S duration-git
77
77
```
78
+
79
+ ### License
80
+
81
+ Duration is open source software licensed under the MIT License.
82
+
83
+ See the [ LICENSE] ( ./LICENSE ) file for more.
Original file line number Diff line number Diff line change 1
1
module github.com/mstruebing/duration
2
2
3
- go 1.12
3
+ go 1.20
4
4
5
- require (
6
- github.com/buger/goterm v0.0.0-20181115115552-c206103e1f37
7
- golang.org/x/sys v0.0.0-20190610081024-1e42afee0f76 // indirect
8
- )
5
+ require github.com/buger/goterm v1.0.4
6
+
7
+ require golang.org/x/sys v0.13.0 // indirect
Original file line number Diff line number Diff line change 1
1
github.com/buger/goterm v0.0.0-20181115115552-c206103e1f37 h1:uxxtrnACqI9zK4ENDMf0WpXfUsHP5V8liuq5QdgDISU =
2
2
github.com/buger/goterm v0.0.0-20181115115552-c206103e1f37 /go.mod h1:u9UyCz2eTrSGy6fbupqJ54eY5c4IC8gREQ1053dK12U =
3
+ github.com/buger/goterm v1.0.4 h1:Z9YvGmOih81P0FbVtEYTFF6YsSgxSUKEhf/f9bTMXbY =
4
+ github.com/buger/goterm v1.0.4 /go.mod h1:HiFWV3xnkolgrBV3mY8m0X0Pumt4zg4QhbdOzQtB8tE =
3
5
golang.org/x/sys v0.0.0-20190610081024-1e42afee0f76 h1:QSmW7Q3mFdAGjtAd0byXmFJ55inUydyZ4WQmiuItAIQ =
4
6
golang.org/x/sys v0.0.0-20190610081024-1e42afee0f76 /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
7
+ golang.org/x/sys v0.0.0-20210331175145-43e1dd70ce54 /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
8
+ golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE =
9
+ golang.org/x/sys v0.13.0 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
You can’t perform that action at this time.
0 commit comments