CI PyTorchDeepSpeech v3 #23
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: CI PyTorchDeepSpeech v3 | |
on: | |
# Run on manual trigger | |
workflow_dispatch: | |
# Run on pull requests | |
pull_request: | |
paths-ignore: | |
- '*.md' | |
# Run on merge queue | |
merge_group: | |
# Run when pushing to main or dev branches | |
push: | |
branches: | |
- main | |
- dev* | |
# Run scheduled CI flow daily | |
schedule: | |
- cron: '0 8 * * 0' | |
jobs: | |
test_deepspeech_v3_torch_1_10: | |
name: PyTorchDeepSpeech v3 / PyTorch 2.1.1 | |
runs-on: ubuntu-latest | |
container: adversarialrobustnesstoolbox/art_testing_envs:deepspeech_v3_torch_2_1_1 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Run Test Action | |
uses: ./.github/actions/deepspeech-v3 | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
fail_ci_if_error: true |