feat(chord): add experiment result/DRS object association workflow #2206
This file contains hidden or 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: Lint | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - develop | |
| pull_request: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| name: Set up Python | |
| with: | |
| python-version: "3.12" | |
| - name: Install flake8 | |
| run: python -m pip install flake8 ruff | |
| - name: Run flake8 linter | |
| run: flake8 ./chord_metadata_service | |
| - name: Run ruff linter | |
| run: ruff check ./chord_metadata_service |