Skip to content

Fix deprecated usage of html5tokenizer in html-comments #26

Fix deprecated usage of html5tokenizer in html-comments

Fix deprecated usage of html5tokenizer in html-comments #26

Workflow file for this run

name: Rust
on:
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: |
for i in $(find */Cargo.toml )
do
n=$(dirname $i)
cd $n
echo "cd $n && cargo build"
cargo build
cd ../
done
- name: Run tests
run: |
for i in $(find */Cargo.toml )
do
n=$(dirname $i)
cd $n
echo "cd $n && cargo test"
cargo test
cd ../
done