Update github/codeql-action action to v3.28.8 (#910) #623
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: Benchmark | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
benchmark: | |
name: Check performance regeression. | |
runs-on: ubuntu-latest | |
permissions: | |
# deployments permission to deploy GitHub pages website | |
deployments: write | |
# contents permission to update benchmark contents in gh-pages branch | |
contents: write | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # tav=v1.4 | |
with: | |
egress-policy: audit | |
disable-telemetry: false | |
allowed-endpoints: > | |
files.pythonhosted.org:443 | |
github.com:443 | |
pypi.org:443 | |
api.github.com:443 | |
- name: Checkout main branch | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
clean: true | |
- name: Setup Python | |
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5 | |
with: | |
python-version: "3.9" | |
- name: "Install dev dependencies" | |
run: | | |
pip install nox==2022.11.21 | |
pip install poetry==1.3.1 | |
pip install nox-poetry==1.0.2 | |
- name: Run benchmark with nox | |
run: nox -s benchmark | |
- name: Store benchmark result in github.io | |
uses: benchmark-action/github-action-benchmark@4de1bed97a47495fc4c5404952da0499e31f5c29 # tag=v1 | |
with: | |
name: Pytest-Benchmark Benchmark | |
tool: 'pytest' | |
output-file-path: benchmark-output.json | |
github-token: ${{ secrets.PERSONAL_GITHUB_TOKEN }} | |
auto-push: true | |
alert-threshold: '130%' | |
comment-on-alert: true | |
fail-on-alert: true |