enable mapping from data to prop (#541) #65
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: Run benchmark tests in TeX Live | |
on: push | |
jobs: | |
run-ubuntu: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: [2022, 2023, 2024] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install TeX Live | |
uses: teatimeguest/setup-texlive-action@v3 | |
with: | |
version: ${{matrix.version}} | |
package-file: .github/workflows/texlive-package.txt | |
packages: tabularray | |
update-all-packages: true | |
- name: Run benchmark tests for tabularray package | |
run: | | |
cd benchmarks | |
texlua benchmark.lua ${{matrix.version}} | |
- name: Store benchmark result | |
uses: benchmark-action/github-action-benchmark@v1 | |
with: | |
name: Tabularray Benchmark in TeX Live ${{matrix.version}} | |
tool: "customSmallerIsBetter" | |
output-file-path: benchmarks/output-${{matrix.version}}.txt | |
benchmark-data-dir-path: benchmark/${{matrix.version}} | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
auto-push: true |