Skip to content

Commit 46ea2ee

Browse files
committed
Switch to GitHub Actions
1 parent 54e9331 commit 46ea2ee

File tree

3 files changed

+29
-19
lines changed

3 files changed

+29
-19
lines changed

.github/workflows/build.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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/

.travis.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

33
A catalog of defenses against adversarial examples, paired with attacks that
44
break them (where applicable).

0 commit comments

Comments
 (0)