Skip to content

Fix Chromedriver installation on macos #182

Fix Chromedriver installation on macos

Fix Chromedriver installation on macos #182

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}--cacheclearer3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Build all examples
run: cargo build --examples