Set ready
label for transformer tests; add message reminder on PR o…
#511
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: Quality Checks | |
on: | |
push: | |
branches: | |
- main | |
- 'release/*' | |
pull_request: | |
branches: | |
- main | |
- 'release/*' | |
jobs: | |
quality-check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- uses: actions/checkout@v2 | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{needs.test-setup.outputs.branch}} | |
- name: "⚙️ Install dependencies" | |
run: pip3 install .[dev] | |
- name: "🧹 Running quality checks" | |
run: make quality |