Avoid missing field value failure in data tables #3158
Workflow file for this run
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: Test Galaxy release script | |
| on: | |
| push: | |
| paths: | |
| - '.github/workflows/test_galaxy_release.yaml' | |
| - lib/galaxy/dependencies/** | |
| - lib/galaxy/version/__init__.py | |
| - scripts/release.sh | |
| - test/release.sh | |
| pull_request: | |
| paths: | |
| - '.github/workflows/test_galaxy_release.yaml' | |
| - lib/galaxy/dependencies/** | |
| - lib/galaxy/version/__init__.py | |
| - scripts/release.sh | |
| - test/release.sh | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Run tests | |
| run: ./test/release.sh |