Add Makefile target to verify proofs onchain #1
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: Test | |
on: | |
push: | |
branches: | |
- docker-compose | |
jobs: | |
docker: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Build containers | |
run: make docker_build | |
- name: Start containers | |
run: make docker_up | |
- name: Logs | |
run: sleep 30 && docker-compose -f "docker-compose.yaml" logs | |
- name: Stop containers | |
if: always() | |
run: docker compose -f "docker-compose.yaml" down |