Add build script to include target-libdir on rpath #173
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| tags-ignore: | |
| - "v*" | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Lint | |
| run: cargo clippy --all-features -- -D warnings | |
| - name: Tests | |
| run: cargo test --all-features -- --test-threads=1 | |
| - name: Docs | |
| run: RUSTDOCFLAGS="-D warnings" cargo doc --all-features --no-deps |