tipe/.github/workflows/tests.yml

26 lines
508 B
YAML
Raw Normal View History

2022-05-14 10:40:06 +02:00
name: Run tests
2022-04-10 21:35:29 +02:00
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2022-05-14 10:40:06 +02:00
- name: compile all
run: ./make.sh build all
2022-04-10 21:35:29 +02:00
- name: run tests
run: ./make.sh test run
2022-05-23 12:19:05 +02:00
- name: mnist main test
run: out/mnist_main train
2022-05-23 12:20:29 +02:00
--epochs 1
--images data/mnist/t10k-images-idx3-ubyte
--labels data/mnist/t10k-labels-idx1-ubyte
2022-05-23 12:19:05 +02:00
--out reseau.bin