Move FormBoolean back to FormElement field in workflow run form
#595
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 packages | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'client/**' | |
| - 'doc/**' | |
| pull_request: | |
| paths-ignore: | |
| - 'client/**' | |
| - 'doc/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ['3.9', '3.13'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| path: 'galaxy root' | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18.12.1' | |
| cache: 'yarn' | |
| cache-dependency-path: 'galaxy root/client/yarn.lock' | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' | |
| cache-dependency-path: 'galaxy root/requirements.txt' | |
| - name: Install ffmpeg | |
| run: sudo apt-get update && sudo apt-get -y install ffmpeg | |
| - name: Install tox | |
| run: pip install tox | |
| - name: Run tests | |
| run: tox -e test_galaxy_packages | |
| working-directory: 'galaxy root' |