Skip to content

build(deps): Bump scraper from 0.17.1 to 0.18.1 #145

build(deps): Bump scraper from 0.17.1 to 0.18.1

build(deps): Bump scraper from 0.17.1 to 0.18.1 #145

Workflow file for this run

name: test
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache .cargo and target
uses: actions/cache@v2
with:
path: |
~/.cargo
./target
key: ${{ runner.os }}-cargo-test-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-test-${{ hashFiles('**/Cargo.lock') }}
${{ runner.os }}-cargo-test
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features