Skip to content

feat: update prover storage data #101

feat: update prover storage data

feat: update prover storage data #101

Workflow file for this run

---
name: E2E tests
on: # yamllint disable-line rule:truthy
push:
branches:
- main
- develop
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
E2E_TESTS: true
E2E_LOGS: true
CI_VERBOSE: true
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.18.x
- name: Run tests
run: make test-e2e
- name: Archive test logs
if: always()
uses: actions/upload-artifact@v3
with:
name: e2e-logs
path: e2e-logs-*/
retention-days: 30