fix: check that the previous xref is not the just processed xref #514
Workflow file for this run
This file contains 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: "Performance Tests" | |
on: | |
pull_request: | |
push: | |
branches: | |
- "master" | |
env: | |
fail-fast: true | |
jobs: | |
performance-tests: | |
name: "Tests for the performance testing the PDF parsing" | |
runs-on: "ubuntu-20.04" | |
strategy: | |
matrix: | |
php: | |
- "7.4" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v3" | |
- name: "Run composer for further autoloading" | |
run: "composer update" | |
- name: "Run performance tests" | |
run: "php tests/Performance/runPerformanceTests.php" |