Cargo install in CI (#1576)

* run cargo install in CI
* also run cargo install in musl env
This commit is contained in:
extrawurst 2023-03-01 15:44:51 +01:00 committed by GitHub
parent 670677044f
commit 8f29cb2e81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,6 +63,9 @@ jobs:
- name: Build Release
run: make build-release
- name: Test Install
run: cargo install --path "."
- name: Binary Size (unix)
if: matrix.os != 'windows-latest'
run: |
@ -119,6 +122,8 @@ jobs:
- name: Test
run: |
make test-linux-musl
- name: Test Install
run: cargo install --path "."
build-linux-arm:
runs-on: ubuntu-latest