Skip to content

Commit 3f9f024

Browse files
Yaml indentation....
Signed-off-by: Francesco Guardiani <[email protected]>
1 parent a9fbb8e commit 3f9f024

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
name: Pull Request checks
1+
name: Pull Request lints
22

33
on:
44
pull_request:
55
branches:
66
- master
77

88
jobs:
9-
fmt:
10-
name: Format check
9+
lint:
10+
name: Rust lints
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
@@ -18,10 +18,12 @@ jobs:
1818
override: true
1919
components: clippy, rustfmt
2020
- uses: actions-rs/cargo@v1
21+
name: "Cargo fmt"
2122
with:
2223
command: fmt
2324
args: --all -- --check
2425
- uses: actions-rs/cargo@v1
26+
name: "Cargo clippy"
2527
with:
2628
command: clippy
2729
args: -- -D warnings

.github/workflows/rust_tests.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -122,18 +122,17 @@ jobs:
122122
target: ${{ matrix.target }}
123123
override: true
124124

125-
# Build examples
126-
- name: "Build reqwest-wasm-example"
127-
if: matrix.target == 'wasm32-unknown-unknown'
128-
working-directory: ${GITHUB_WORKSPACE}/example-projects/reqwest-wasm-example
129-
run: cargo build --target ${{ matrix.target }}
125+
- name: "Build reqwest-wasm-example"
126+
if: matrix.target == 'wasm32-unknown-unknown'
127+
working-directory: ${GITHUB_WORKSPACE}/example-projects/reqwest-wasm-example
128+
run: cargo build --target ${{ matrix.target }}
130129

131-
- name: "Build rdkafka-example"
132-
if: matrix.target == 'x86_64-unknown-linux-gnu'
133-
working-directory: ${GITHUB_WORKSPACE}/example-projects/rdkafka-example
134-
run: cargo build --target ${{ matrix.target }}
130+
- name: "Build rdkafka-example"
131+
if: matrix.target == 'x86_64-unknown-linux-gnu'
132+
working-directory: ${GITHUB_WORKSPACE}/example-projects/rdkafka-example
133+
run: cargo build --target ${{ matrix.target }}
135134

136-
- name: "Build actix-web-example"
137-
if: matrix.target == 'x86_64-unknown-linux-gnu'
138-
working-directory: ${GITHUB_WORKSPACE}/example-projects/actix-web-example
139-
run: cargo build --target ${{ matrix.target }}
135+
- name: "Build actix-web-example"
136+
if: matrix.target == 'x86_64-unknown-linux-gnu'
137+
working-directory: ${GITHUB_WORKSPACE}/example-projects/actix-web-example
138+
run: cargo build --target ${{ matrix.target }}

0 commit comments

Comments
 (0)