Bump tests/html5lib-tests from a9f4496 to 8f43b7e
          
            #139
        
      
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | name: Rust | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| benchmark: | |
| if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) | |
| name: Benchmark | |
| runs-on: ubuntu-latest | |
| env: | |
| BENCHER_PROJECT: html5gum | |
| BENCHER_API_TOKEN: ${{ secrets.BENCHER_API_TOKEN }} | |
| BENCHER_ADAPTER: rust_iai | |
| BENCHER_TESTBED: github-actions | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: stable | |
| - uses: baptiste0928/cargo-install@v2 | |
| with: | |
| crate: bencher_cli | |
| git: https://github.com/bencherdev/bencher | |
| ref: f6832c1c | |
| - run: sudo apt-get install -y valgrind | |
| - run: bencher run --if-branch "$GITHUB_REF_NAME" --else-if-branch "$GITHUB_BASE_REF" --else-if-branch main --err --github-actions ${{ secrets.GITHUB_TOKEN }} --ci-only-thresholds --ci-only-on-alert "cargo bench" |