Update Github Actions to run cargo directly

The cargo action is deprecated so this change switches to using a bash
invocation
This commit is contained in:
Conrad Kramer 2023-04-10 17:46:53 -04:00
parent c1e7415871
commit 39c3600022
2 changed files with 4 additions and 8 deletions

View file

@ -48,8 +48,4 @@ jobs:
targets: ${{ join(matrix.targets, ', ') }}
- name: Build
shell: bash
run: cargo build --verbose --workspace --all-features
- uses: actions-rs/cargo@v1
with:
command: build
args: --workspace --all-features --target ${{ join(matrix.targets, ' --target ') }}
run: cargo build --verbose --workspace --all-features --target ${{ join(matrix.targets, ' --target ') }}