Skip to content

Improve implementation of tape to DOM(value) translation #120

Improve implementation of tape to DOM(value) translation

Improve implementation of tape to DOM(value) translation #120

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Run tests with llvm-cov
env:
RUSTFLAGS: '-C target-cpu=native'
run: cargo llvm-cov --all-features --lcov --output-path lcov.txt
- name: Upload coverage to codecov
uses: codecov/codecov-action@v3
with:
files: ./lcov.txt # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)