[pre-commit.ci] pre-commit autoupdate #289
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: cml | |
on: | |
push: | |
jobs: | |
benchmark: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16' | |
- uses: iterative/setup-cml@v1 | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- name: Install package | |
run: | | |
poetry install --no-interaction | |
- name: Run pytest | |
run: | | |
poetry run python --version | |
poetry run pytest --benchmark-histogram benchmark -m benchmark | |
- name: Create report | |
env: | |
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
echo '# Benchmark' >> report.md | |
echo '## Write: Varying number of images' >> report.md | |
echo '![](./benchmark-write-count.svg "Write benchmark, varying count")' >> report.md | |
echo '## Write: Varying number of atoms' >> report.md | |
echo '![](./benchmark-write-size.svg "Write benchmark, varying size")' >> report.md | |
echo '## Read: Varying number of images' >> report.md | |
echo '![](./benchmark-read-count.svg "Read benchmark, varying count")' >> report.md | |
echo '## Read: Varying number of atoms' >> report.md | |
echo '![](./benchmark-read-size.svg "Read benchmark, varying size")' >> report.md | |
cml comment update report.md |