You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
585 B

  1. name: CircomTest
  2. on: [ push, pull_request ]
  3. jobs:
  4. test:
  5. runs-on: ubuntu-latest
  6. strategy:
  7. matrix:
  8. node-version: [14.x]
  9. go-version: [1.16.x]
  10. steps:
  11. - uses: actions/checkout@v2
  12. - name: Use Node.js ${{ matrix.node-version }}
  13. uses: actions/setup-node@v1
  14. with:
  15. node-version: ${{ matrix.node-version }}
  16. - name: Install Go
  17. uses: actions/setup-go@v1
  18. with:
  19. go-version: ${{ matrix.go-version }}
  20. - name: run circom tests
  21. run: |
  22. cd testvectors/circom
  23. npm install
  24. npm run test