Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaupetit committed Dec 4, 2024
1 parent 8ae07d7 commit d4772c8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ jobs:
QUALICHARGE_OAUTH2_TOKEN_ISSUER: http://test:8000
QUALICHARGE_EXECUTION_ENVIRONMENT: ci
steps:
- name: Test context
if: ${{ github.event.pull_request.merged == false }}
run: false
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
Expand Down Expand Up @@ -185,8 +188,9 @@ jobs:
path: ./src/api/bench_admin_stats_stamped.csv
- name: Generate markdown table
# Only when in PR, not when merged
if: github.event.pull_request.merged == false
if: ${{ github.event.pull_request.merged == false }}
run: |
false
echo -e "### Current benchmark\n\n" >> bench_admin_stats.md && \
pipenv run csvlook -I bench_admin_stats_stamped.csv >> bench_admin_stats.md && \
echo -e "\n### Comparison with the latest previous benchmark\n\n" >> bench_admin_stats.md && \
Expand Down

0 comments on commit d4772c8

Please sign in to comment.