Skip to content

Commit 39b1aea

Browse files
authored
Merge pull request #15 from AlexNDRmac/circleci-to-actions
Circleci to actions
2 parents cbdd55c + 4614962 commit 39b1aea

File tree

5 files changed

+57
-38
lines changed

5 files changed

+57
-38
lines changed

.circleci/config.yml

-31
This file was deleted.

.github/workflows/ci.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Duration
22

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)
44
[![Go Report Card](https://goreportcard.com/badge/github.com/mstruebing/duration)](https://goreportcard.com/report/github.com/mstruebing/duration)
55

66
1. [Why](#why)
@@ -32,7 +32,7 @@ would work:
3232
duration script.sh
3333
would NOT work:
3434
duration sleep 5 && sleep 4
35-
```````````
35+
```
3636

3737

3838
### Important
@@ -75,3 +75,9 @@ i.e:
7575
```sh
7676
trizen -S duration-git
7777
```
78+
79+
### License
80+
81+
Duration is open source software licensed under the MIT License.
82+
83+
See the [LICENSE](./LICENSE) file for more.

go.mod

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
module github.com/mstruebing/duration
22

3-
go 1.12
3+
go 1.20
44

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

go.sum

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
github.com/buger/goterm v0.0.0-20181115115552-c206103e1f37 h1:uxxtrnACqI9zK4ENDMf0WpXfUsHP5V8liuq5QdgDISU=
22
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=
35
golang.org/x/sys v0.0.0-20190610081024-1e42afee0f76 h1:QSmW7Q3mFdAGjtAd0byXmFJ55inUydyZ4WQmiuItAIQ=
46
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=

0 commit comments

Comments
 (0)