Implement tool markdown reports. #4989
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: Check test class names | |
on: | |
pull_request: | |
paths: | |
- '.ci/check_test_class_names.sh' | |
- 'lib/galaxy_test/**' | |
- 'test/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8'] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
cache-dependency-path: 'requirements.txt' | |
- name: Install Python dependencies | |
run: pip install -r requirements.txt -r lib/galaxy/dependencies/dev-requirements.txt | |
- name: Run tests | |
run: .ci/check_test_class_names.sh |