Skip to content

Commit 9b978d8

Browse files
committed
Sync up workflow file definitions
This change updates our workflow file definitions by bringing them closer to what we use in other projects.
1 parent b5bfab4 commit 9b978d8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
version: ${{ needs.version.outputs.version }}
5252
run: |
5353
curl --location \
54+
--fail-with-body \
5455
--request POST \
5556
--url https://api.github.com/repos/${{ github.repository }}/releases \
5657
--header "Accept: application/vnd.github+json" \

.github/workflows/test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ jobs:
3535
profile: minimal
3636
override: true
3737
- name: Build ${{ matrix.profile }}
38-
run: |
39-
cargo build --profile=${{ matrix.profile }} --lib --tests --all-features
38+
run: cargo build --profile=${{ matrix.profile }} --lib --tests --all-features
4039
build-minimum:
4140
name: Build using minimum versions of dependencies
4241
runs-on: ubuntu-latest
@@ -84,7 +83,7 @@ jobs:
8483
toolchain: stable
8584
components: clippy
8685
override: true
87-
- run: cargo clippy --no-deps --all-targets --all-features --tests -- -A unknown_lints -D warnings
86+
- run: cargo clippy --no-deps --all-targets --all-features -- -A unknown_lints -D warnings
8887
rustfmt:
8988
name: Check code formatting
9089
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)