name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Install dependencies (apt)
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install libsodium-dev
- name: Install dependencies (brew)
if: matrix.os == 'macos-latest'
run: brew install pkg-config libsodium
- name: Build
if: matrix.os != 'windows-latest'
run: cargo build --verbose
- name: Run tests
if: matrix.os != 'windows-latest'
run: cargo test --verbose
- name: Build (windows)
if: matrix.os == 'windows-latest'
run: cargo build --verbose --no-default-features --features=crypto,httpd,spider,native-tls
- name: Run tests (windows)
if: matrix.os == 'windows-latest'
run: cargo test --verbose --no-default-features --features=crypto,httpd,spider,native-tls