File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -12,16 +12,11 @@ jobs:
12
12
name : Test
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- # https://github.com/actions/setup-go/issues/21#issuecomment-565704236
16
- - name : Install gotip
17
- run : |
18
- git clone --depth=1 https://go.googlesource.com/go $HOME/gotip
19
- cd $HOME/gotip/src
20
- ./make.bash
21
- echo "GOROOT=$HOME/gotip" >> $GITHUB_ENV
22
- echo "$HOME/gotip/bin:$PATH" >> $GITHUB_PATH
23
15
- name : Check out code into the Go module directory
24
- uses : actions/checkout@v1
16
+ uses : actions/checkout@v2
17
+ - uses : actions/setup-go@v2
18
+ with :
19
+ go-version : ' ^1.18'
25
20
- name : Declare some variables
26
21
id : vars
27
22
run : |
Original file line number Diff line number Diff line change 1
1
# go-generics-cache
2
2
3
- [ ![ .github/workflows/test.yml] ( https://github.com/Code-Hex/go-generics-cache/actions/workflows/test.yml/badge.svg )] ( https://github.com/Code-Hex/go-generics-cache/actions/workflows/test.yml ) [ ![ codecov] ( https://codecov.io/gh/Code-Hex/go-generics-cache/branch/main/graph/badge.svg?token=Wm7UEwgiZu )] ( https://codecov.io/gh/Code-Hex/go-generics-cache )
3
+ [ ![ .github/workflows/test.yml] ( https://github.com/Code-Hex/go-generics-cache/actions/workflows/test.yml/badge.svg )] ( https://github.com/Code-Hex/go-generics-cache/actions/workflows/test.yml ) [ ![ codecov] ( https://codecov.io/gh/Code-Hex/go-generics-cache/branch/main/graph/badge.svg?token=Wm7UEwgiZu )] ( https://codecov.io/gh/Code-Hex/go-generics-cache ) [ ![ Go Reference ] ( https://pkg.go.dev/badge/github.com/Code-Hex/go-generics-cache.svg )] ( https://pkg.go.dev/github.com/Code-Hex/go-generics-cache )
4
4
5
5
go-generics-cache is an in-memory key: value store/cache that is suitable for applications running on a single machine. This in-memory cache uses [ Go Generics] ( https://go.dev/blog/generics-proposal ) which will be introduced in 1.18.
6
6
You can’t perform that action at this time.
0 commit comments