-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (49 loc) · 1.24 KB
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Rust
on:
pull_request:
merge_group:
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- name: Install dependencies
run: sudo apt-get install -y socat
- name: Clippy
run: cargo clippy -- -D warnings
- name: Build
run: make build
- name: unit test
run: cargo test --locked --all-targets
# https://github.com/rust-lang/cargo/issues/6669
- name: doc test
run: cargo test --locked --all-features --doc
- name: e2e test
run: make e2e
go-sdk:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- name: Install dependencies
run: sudo apt-get install -y socat
- name: go vet
run: go vet ./...
- name: go test
run: go test -v ./...
- name: e2e with go client
run: make e2e CLIENT_BINARY=$PWD/tests/e2e/.bin/castlego
run-examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: examples test
run: make test-examples