mirror of
https://github.com/eth-act/ere.git
synced 2026-02-19 11:54:42 -05:00
20 lines
461 B
YAML
20 lines
461 B
YAML
name: Test and clippy OpenVM
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ['Build and push images']
|
|
types: [completed]
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
if: github.event_name == 'pull_request' || github.event.workflow_run.conclusion == 'success'
|
|
uses: ./.github/workflows/test-zkvm.yml
|
|
with:
|
|
zkvm: openvm
|
|
cuda: true
|