File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -21,20 +21,28 @@ defaults:
21
21
22
22
jobs :
23
23
test :
24
- name : " test (Ruby ${{ matrix.ruby }})"
24
+ name : " test (Go ${{ matrix.golang }}, Ruby ${{ matrix.ruby }})"
25
25
26
26
runs-on : ubuntu-latest
27
27
28
28
strategy :
29
29
fail-fast : false
30
30
31
31
matrix :
32
+ golang :
33
+ # TODO: Enable after repo is published
34
+ # - "1.22"
35
+ - " 1.23"
32
36
ruby :
33
37
- " 3.3"
34
38
35
39
steps :
36
40
- uses : actions/checkout@v4
37
41
42
+ - uses : actions/setup-go@v5
43
+ with :
44
+ go-version : ${{ matrix.golang }}
45
+
38
46
- uses : ruby/setup-ruby@v1
39
47
with :
40
48
ruby-version : ${{ matrix.ruby }}
43
51
- run : sudo apt-get update
44
52
- run : sudo apt-get install -y universal-ctags
45
53
54
+ - run : go install golang.org/x/tools/cmd/goimports@latest
55
+
46
56
- run : bundle exec rspec
47
57
48
58
- name : Slack Notification (not success)
You can’t perform that action at this time.
0 commit comments