Modules (ZSTD) #13
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: Modules (ZSTD) | |
| on: | |
| # Avoid triggering on pushes to /all/ open PR branches. | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'xls/modules/zstd/**' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'xls/modules/zstd/**' | |
| # This lets us trigger manually from the UI. | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Test ZSTD module (opt) | |
| runs-on: | |
| labels: ubuntu-22.04 | |
| timeout-minutes: 600 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Fail on demand | |
| run: | |
| ls this-directory-doesnt-exist | |
| - name: Dummy bazel tests | |
| if: ${{ !cancelled() }} | |
| run: | | |
| echo "Im running" |