Added support for Overload attack #4330
Workflow file for this run
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 PyTorchEspresso | |
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_espresso: | |
name: PyTorchEspresso | |
runs-on: ubuntu-latest | |
container: adversarialrobustnesstoolbox/art_testing_envs:espresso | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Run Test Action | |
uses: ./.github/actions/espresso | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} |