diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 5fe240b..21edf1c 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -19,10 +19,6 @@ jobs: id: step env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref }} - name: ${{ github.ref }} - draft: false build_release: name: Build release @@ -50,6 +46,7 @@ jobs: targets: ${{ join(matrix.targets, ',') }} - name: Build + shell: bash run: | for target in ${{ join(matrix.targets, ' ') }}; do cargo build --release --target $target diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4f45a61..8c65ed6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -35,13 +35,13 @@ jobs: uses: Swatinem/rust-cache@v2 - name: Build - run: cargo build --all-features --locked + run: cargo build --all-targets --all-features --locked - name: Clippy - run: cargo clippy --all-features + run: cargo clippy --all-targets --all-features - name: Test - run: cargo test --all-features --locked + run: cargo test --all-targets --all-features --locked fmt: name: Formatting