diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 43392f6..c1262d8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -51,6 +51,7 @@ jobs: version: ${{ needs.version.outputs.version }} run: | curl --location \ + --fail-with-body \ --request POST \ --url https://api.github.com/repos/${{ github.repository }}/releases \ --header "Accept: application/vnd.github+json" \ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e1d8d07..58b899e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,8 +35,7 @@ jobs: profile: minimal override: true - name: Build ${{ matrix.profile }} - run: | - cargo build --profile=${{ matrix.profile }} --lib --tests --all-features + run: cargo build --profile=${{ matrix.profile }} --lib --tests --all-features build-minimum: name: Build using minimum versions of dependencies runs-on: ubuntu-latest @@ -84,7 +83,7 @@ jobs: toolchain: stable components: clippy override: true - - run: cargo clippy --no-deps --all-targets --all-features --tests -- -A unknown_lints -D warnings + - run: cargo clippy --no-deps --all-targets --all-features -- -A unknown_lints -D warnings rustfmt: name: Check code formatting runs-on: ubuntu-latest