Skip to content

Commit

Permalink
Add an "upload" action for benchmark results
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrice Normandin <normandf@mila.quebec>
  • Loading branch information
lebrice committed Aug 3, 2023
1 parent b3d12de commit edb897e
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/upload.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Upload the benchmark results
on:
push:
branches:
- master
- temp_master
workflow_dispatch: {}

jobs:
upload_benchmark_results:
runs-on: ubuntu-latest
name: Test out the action in this repository
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[all]
- name: Run the benchmark
run: pytest --benchmark-only --benchmark-json=benchmark_results.json

- name: Upload the file
uses: actions/upload-artifact@v2
with:
name: benchmark_results
path: benchmark_results.json

0 comments on commit edb897e

Please sign in to comment.