-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1c48b03
commit ff0a2ad
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Rust | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
RUSTFLAGS: "-D warnings" | ||
|
||
jobs: | ||
build: | ||
name: Test debug on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macOS-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- if: ${{ matrix.os == 'ubuntu-latest' }} | ||
uses: awalsh128/cache-apt-pkgs-action@latest | ||
with: | ||
packages: libssl-dev pkg-config libasound2-dev | ||
version: latest | ||
- uses: Swatinem/rust-cache@v2.7.0 | ||
- name: Versions | ||
run: cargo --version && rustc --version && cargo fmt -- --version && cargo clippy -- --version | ||
- run: cargo fmt --all -- --check | ||
- run: cargo clippy --all -- --deny=warnings | ||
- run: cargo clippy --all --no-default-features -- --deny=warnings | ||
- run: cargo audit --ignore RUSTSEC-2020-0056 --ignore RUSTSEC-2022-0048 --ignore RUSTSEC-2020-0071 | ||
- run: cargo build --all | ||
- run: cargo build --all --no-default-features | ||
- run: cargo test --all | ||
|
||
build-release: | ||
name: Test release on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macOS-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- if: ${{ matrix.os == 'ubuntu-latest' }} | ||
uses: awalsh128/cache-apt-pkgs-action@latest | ||
with: | ||
packages: libssl-dev pkg-config libasound2-dev | ||
version: latest | ||
- uses: Swatinem/rust-cache@v2.7.0 | ||
- name: Versions | ||
run: cargo --version && rustc --version && cargo fmt -- --version && cargo clippy -- --version | ||
- run: cargo fmt --all -- --check | ||
- run: cargo clippy --release --all -- --deny=warnings | ||
- run: cargo clippy --release --all --no-default-features -- --deny=warnings | ||
- run: cargo build --release --all | ||
- run: cargo build --release --all --no-default-features | ||
- run: cargo test --release --all | ||
|