-
Notifications
You must be signed in to change notification settings - Fork 5.7k
56 lines (56 loc) · 2.44 KB
/
rust.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
name: Rust
on:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
check:
name: Lint Rust
runs-on: aws-doc-sdk-examples_ubuntu-latest_16-core
steps:
- name: Checkout files
uses: actions/checkout@v4
with:
sparse-checkout: |
.github
rustv1
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41
with:
files: "rustv1/**/*.{rs,toml}"
- name: setup
if: steps.changed-files.outputs.any_changed == 'true'
run: sudo apt-get update && sudo apt-get install -y libclang-dev
- uses: dtolnay/rust-toolchain@stable
if: steps.changed-files.outputs.any_changed == 'true'
with:
toolchain: "1.74.1"
components: clippy, rustfmt
- name: Set Environment
if: steps.changed-files.outputs.any_changed == 'true'
run: >
export RUSTFLAGS="-D warnings" ;
export APP_ENVIRONMENT="test"
- name: Rust format
if: steps.changed-files.outputs.any_changed == 'true'
run: >
"$HOME/.cargo/bin/cargo" fmt --manifest-path rustv1/cross_service/Cargo.toml --all --check &&
"$HOME/.cargo/bin/cargo" fmt --manifest-path rustv1/examples/Cargo.toml --all --check &&
"$HOME/.cargo/bin/cargo" fmt --manifest-path rustv1/lambda/Cargo.toml --all --check &&
"$HOME/.cargo/bin/cargo" fmt --manifest-path rustv1/webassembly/Cargo.toml --all --check
- name: Rust lint
if: steps.changed-files.outputs.any_changed == 'true' && (success() || failure())
run: >
"$HOME/.cargo/bin/cargo" clippy --manifest-path rustv1/cross_service/Cargo.toml --all &&
"$HOME/.cargo/bin/cargo" clippy --manifest-path rustv1/examples/Cargo.toml --all &&
"$HOME/.cargo/bin/cargo" clippy --manifest-path rustv1/lambda/Cargo.toml --all &&
"$HOME/.cargo/bin/cargo" clippy --manifest-path rustv1/webassembly/Cargo.toml --all
- name: Rust test
if: steps.changed-files.outputs.any_changed == 'true'
run: >
"$HOME/.cargo/bin/cargo" test --manifest-path rustv1/cross_service/Cargo.toml --all &&
"$HOME/.cargo/bin/cargo" test --manifest-path rustv1/examples/Cargo.toml --all &&
"$HOME/.cargo/bin/cargo" test --manifest-path rustv1/lambda/Cargo.toml --all &&
"$HOME/.cargo/bin/cargo" test --manifest-path rustv1/webassembly/Cargo.toml --all