-
Notifications
You must be signed in to change notification settings - Fork 1
103 lines (89 loc) · 2.47 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
cargo-check:
name: Cargo check
runs-on:
group: Default
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: check
fmt-check:
name: Rust fmt
runs-on:
group: Default
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
test-and-coverage:
name: Test and Coverage
runs-on:
group: Default
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install dependencies
run: |
apt install libssl-dev
rustup self update
rustup update
cargo install cargo-tarpaulin
- name: Run tests with coverage
run: cargo tarpaulin --all-features --verbose
release-github-artifact:
name: Release Packaging
env:
PROJECT_NAME_UNDERSCORE: rust-server
runs-on:
group: Default
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
needs: [cargo-check, fmt-check, test-and-coverage]
steps:
- name: Check out from Git
uses: actions/checkout@v4
- name: Grant permission to run command
run: echo 'ACTIONS_ALLOW_UNSECURE_COMMANDS=true' >> $GITHUB_ENV
- name: Check if Git tag exists
run: echo "::set-env name=HEAD_TAG::$(git tag --points-at HEAD)"
- name: Skip if Git tag does not exist
if: steps.check-tag.outputs.HEAD_TAG == ''
run: exit 0 # Exit with success, effectively skipping subsequent steps
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Release Build
run: cargo build --release --all
- name: "Upload Artifact"
uses: actions/upload-artifact@v4
with:
name: ${{ env.PROJECT_NAME_UNDERSCORE }}
path: target/release/cli