Merge pull request #37 from ooopSnake/master #73
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
name: Build & test with dynamic deps | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build-and-test: | |
name: Build and test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
feature: ["default", "media"] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt update | |
sudo apt install libssl-dev | |
- if: matrix.os == 'macos-latest' | |
run: | | |
HOMEBREW_NO_INSTALL_CLEANUP=1 brew reinstall openssl@3 | |
echo "OPENSSL_ROOT_DIR=/usr/local/opt/openssl@3" >> $GITHUB_ENV | |
- if: matrix.os == 'windows-latest' | |
run: | | |
choco install openssl --version 3.1.1 | |
- run: rustup update | |
- run: cargo build --features ${{ matrix.feature }} | |
- run: cargo fmt --check --all | |
- run: cargo clippy --features ${{ matrix.feature }} -- -D warnings | |
- if: matrix.os == 'windows-latest' | |
run: (gci -r -fi datachannel.dll).fullname | select -last 1 | Split-Path >> $env:GITHUB_PATH | |
- run: cargo test --features ${{ matrix.feature }} --verbose |