Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tutorial bugfixes and CI integration #472

Merged
merged 13 commits into from
Feb 1, 2021
13 changes: 13 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,18 @@ jobs:
- name: Build
run: make build

- name: Download MNist files
uses: suisei-cn/actions-download-file@v1
id: mnist
with:
url: "https://github.com/srush/learns-dex/raw/main/mnist.bin"
target: examples/
- name: Download MNist labels file
uses: suisei-cn/actions-download-file@v1
id: labels
with:
url: "https://github.com/srush/learns-dex/raw/main/labels.bin"
dan-zheng marked this conversation as resolved.
Show resolved Hide resolved
target: examples/

- name: Run tests
run: make tests
Loading