mirror of
https://github.com/Luzifer/ots.git
synced 2025-12-28 06:14:42 -05:00
Implement OTS-CLI utility (#117)
This commit is contained in:
parent
c5124731f5
commit
546481dcfc
20 changed files with 861 additions and 70 deletions
14
.github/workflows/test-and-build.yml
vendored
14
.github/workflows/test-and-build.yml
vendored
|
|
@ -50,9 +50,19 @@ jobs:
|
|||
- name: Marking workdir safe
|
||||
run: git config --global --add safe.directory /__w/ots/ots
|
||||
|
||||
- name: Lint and test code
|
||||
- name: 'Lint and test code: API'
|
||||
run: |
|
||||
go test -v ./...
|
||||
go test -cover -v ./...
|
||||
|
||||
- name: 'Lint and test code: Client'
|
||||
working-directory: ./pkg/client
|
||||
run: |
|
||||
go test -cover -v ./...
|
||||
|
||||
- name: 'Lint and test code: OTS-CLI'
|
||||
working-directory: ./cmd/ots-cli
|
||||
run: |
|
||||
go test -cover -v ./...
|
||||
|
||||
- name: Generate (and validate) translations
|
||||
run: make translate
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue