Fix asqa_dataset_builder for numpy2 by using int64 for sample_id feat… #18
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: Unittests [Optional] | |
on: | |
workflow_dispatch: | |
workflow_run: | |
workflows: [Unittests] | |
types: [requested] | |
# Cancel in-progress runs for the current workflow if not on the main branch | |
# (as it marks the unittests as failed). | |
# Conditionals to concurrent are based on the solution proposed in this link: | |
# https://github.community/t/concurrency-cancel-in-progress-but-not-when-ref-is-master/194707 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }} | |
# Cancel only PR intermediate builds. | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} |