File tree Expand file tree Collapse file tree 3 files changed +29
-19
lines changed
Expand file tree Collapse file tree 3 files changed +29
-19
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ push :
4+ schedule :
5+ - cron : ' 0 8 * * 6'
6+ jobs :
7+ build :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v2
11+ - uses : actions/setup-ruby@v1
12+ with :
13+ ruby-version : 2.7.x
14+ - uses : actions/cache@v2
15+ with :
16+ path : vendor/bundle
17+ key : ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
18+ restore-keys : |
19+ ${{ runner.os }}-gems-
20+ - run : |
21+ bundle config path vendor/bundle
22+ bundle install --jobs 4 --retry 3
23+ - run : bundle exec jekyll build
24+ - uses : anishathalye/proof-html@v1
25+ with :
26+ directory : ./_site
27+ url_ignore : |
28+ /tree/
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- # Adversarial Example Defenses [[ ![ Build Status] ( https://travis-ci .com/robust-ml/robust-ml.github.io.svg?branch=master )] ( https://travis-ci .com/robust-ml/robust-ml.github.io )]
1+ # Adversarial Example Defenses [ ![ Build Status] ( https://github .com/robust-ml/robust-ml.github.io/workflows/CI/badge .svg )] ( https://github .com/robust-ml/robust-ml.github.io/actions?query=workflow%3ACI )
22
33A catalog of defenses against adversarial examples, paired with attacks that
44break them (where applicable).
You can’t perform that action at this time.
0 commit comments