We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 466045b commit b3b9aa3Copy full SHA for b3b9aa3
1 file changed
.github/workflows/test-cli.yml
@@ -17,7 +17,7 @@ jobs:
17
uses: actions/setup-go@v2
18
with:
19
go-version: '1.24.4'
20
- - name: Generate CLI and run tests
+ - name: Generate CLI and run unit tests
21
env:
22
GOPRIVATE: github.com/phrase/phrase-go
23
run: |
@@ -28,6 +28,15 @@ jobs:
28
npm run generate.cli
29
go build .
30
go test -v ./...
31
+ - name: Install Ruby and rspec
32
+ uses: ruby/setup-ruby@v1
33
+ with:
34
+ ruby-version: '3.2'
35
+ bundler-cache: true
36
+ - name: Run integration tests
37
+ run: |
38
+ cd ./clients/cli
39
+ bundle exec rspec
40
- name: License check
41
uses: phrase/actions/lawa-ci@v1
42
0 commit comments