-
Notifications
You must be signed in to change notification settings - Fork 32
69 lines (63 loc) · 1.69 KB
/
ci.yml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: CI
on:
push:
branches:
- main
- release-*
tags:
- v*
pull_request:
branches:
- main
- release-*
env:
CARGO_TERM_COLOR: always
CARGO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: cargo fmt
run: cargo fmt -- --check --color ${{ env.CARGO_TERM_COLOR }}
- name: cargo clippy
run: cargo clippy -- -W warnings
regression-test:
runs-on: ubuntu-latest
steps:
- run: echo "Get latest nacos from docker hub"
- run: docker --version
- run: sudo docker pull nacos/nacos-server:latest
- run: sudo docker run --name nacos-quick -e MODE=standalone -p 8848:8848 -p 9848:9848 -d nacos/nacos-server:latest
- run: sudo apt install -y protobuf-compiler libprotobuf-dev
- name: Check out repository code
uses: actions/checkout@v3
- run: cargo --version --verbose
- run: rustc --version --verbose
- name: format check
run: cargo fmt --check
- name: unit test
run: cargo test --all-targets
- run: cargo run --example simple_app
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build
- name: Build examples
run: cargo build --examples
- name: Run Tests
run: cargo test --all-targets
# publish:
# name: Publish
# runs-on: ubuntu-latest
# needs: [lint, build]
# if: startswith(github.ref, 'refs/tags/v')
#
# steps:
# - uses: actions/checkout@v3
# - name: cargo publish
# run: cargo publish --token ${{ env.CARGO_TOKEN }}