Skip to content

Commit

Permalink
perf(writer): add lol_html handling
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Nov 12, 2024
1 parent a8e27b7 commit 22ad777
Show file tree
Hide file tree
Showing 36 changed files with 6,154 additions and 319 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Rust
on:
push:
branches: [main]
pull_request:
branches: [main]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
id: cache
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run bench
run: cargo bench
Loading

0 comments on commit 22ad777

Please sign in to comment.