Added a GitHub Action to check for performance regressions within the incoming changes from PRs, along with two test cases based on historical regressions #1
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: Autocomment atime-based performance regression analysis on PRs | |
on: | |
pull_request: | |
branches: | |
- '*' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
container: ghcr.io/iterative/cml:0-dvc2-base1 | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
R_KEEP_PKG_SOURCE: yes | |
steps: | |
- uses: Anirban166/[email protected] |