headless_chrome 1.0.5

Control Chrome programatically
Documentation
name: CI

on:
  push:
  pull_request:

permissions:
  contents: read

env:
  RUSTFLAGS: -Dwarnings # Turn warnings into errors

jobs:
  check:
    name: cargo check
    runs-on: ubuntu-latest
    timeout-minutes: 20
    steps:
      - uses: actions/checkout@v3
      - uses: dtolnay/rust-toolchain@master
        with:
          toolchain: stable
      - run: cargo check --all-features
      - run: cargo fmt --all -- --check