File tree 1 file changed +10
-8
lines changed
1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -20,15 +20,16 @@ jobs:
20
20
strategy :
21
21
matrix :
22
22
os :
23
- - ubuntu-22.04 # https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2204 -Readme.md
23
+ - ubuntu-22.04 # https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2404 -Readme.md
24
24
- macos-13 # https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
25
- - windows-2022 # https://github.com/actions/runner-images/blob/main/images/win/Windows2022-Readme.md
25
+ - macos-14 # https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
26
+ - windows-2022 # https://github.com/actions/runner-images/blob/main/images/windows/Windows2022-Readme.md
26
27
go-version :
27
- - 1.18.x
28
- - 1.19.x
29
28
- 1.20.x
29
+ - 1.21.x
30
+ - 1.22.x
30
31
neovim-version :
31
- - v0.9.1
32
+ - v0.9.5
32
33
- nightly
33
34
fail-fast : false
34
35
@@ -42,12 +43,13 @@ jobs:
42
43
echo "NVIM_VERSION=$(if [ ${{ matrix.neovim-version }} != 'nightly' ]; then echo 'stable'; else echo 'nightly'; fi)" >> $GITHUB_ENV
43
44
44
45
- name : Install Go
45
- uses : actions/setup-go@v3
46
+ uses : actions/setup-go@v5
46
47
with :
47
48
go-version : ${{ matrix.go-version }}
49
+ check-latest : true
48
50
49
51
- name : Checkout code
50
- uses : actions/checkout@v3
52
+ uses : actions/checkout@v4
51
53
52
54
- name : Install neovim binary
53
55
uses : rhysd/action-setup-vim@v1
63
65
run : |
64
66
go test -v -race -count=1 -covermode=atomic -coverpkg=./... -coverprofile=coverage.out ./...
65
67
66
- - uses : codecov/codecov-action@v3
68
+ - uses : codecov/codecov-action@v4
67
69
with :
68
70
file : coverage.out
69
71
flags : ${{ env.OS }}-${{ env.GO_VERSION }}-${{ env.NVIM_VERSION }}
You can’t perform that action at this time.
0 commit comments