Skip to content

Avoid truncating URLs in unquoted hrefs (#1) #2

Avoid truncating URLs in unquoted hrefs (#1)

Avoid truncating URLs in unquoted hrefs (#1) #2

Workflow file for this run

on:
push:
branches: [master, staging, trying]
pull_request:
branches: [master]
name: Test
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: miri
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
- name: Test SIMD
uses: actions-rs/cargo@v1
with:
command: test
args: --features simd
- name: Miri
uses: actions-rs/cargo@v1
with:
command: miri
args: test
- name: Bench stable
uses: actions-rs/cargo@v1
with:
command: bench
- name: Bench SIMD
uses: actions-rs/cargo@v1
with:
command: bench
args: --features simd