Rename composer_run_name tag to run_name when logging to MLflow #870
Workflow file for this run
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: PR Code Quality Checks | |
on: | |
push: | |
branches: | |
- dev | |
- main | |
- release/** | |
pull_request: | |
workflow_dispatch: | |
# Cancel old runs when a new commit is pushed to the same branch if not on main | |
# or dev | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev' }} | |
jobs: | |
code-quality: | |
uses: ./.github/workflows/code-quality.yaml | |
strategy: | |
matrix: | |
python_version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
pip_deps: | |
- "[dev]" | |
with: | |
python_version: ${{ matrix.python_version }} | |
pip_deps: ${{ matrix.pip_deps }} |