1
0
mirror of https://github.com/angr/pyvex synced 2026-06-21 13:47:01 +00:00
Files
Zachary Wimer cd758543f1 Code Quality: trailing whitespace, pyupgrade, prefer builtin constructors (#288)
* trailing whitespace, pyupgrade, prefer builtin constructors

* lint
2022-12-20 21:12:37 -07:00

29 lines
604 B
YAML

name: Custom CI
on:
workflow_dispatch:
inputs:
image:
description: Container image to run with
type: string
required: true
nightly:
description: Run in nightly mode (include slow tests, no dependent projects)
type: boolean
required: true
afl:
description: Set parameters for AFL
type: boolean
required: true
jobs:
ci:
uses: angr/ci-settings/.github/workflows/angr-ci.yml@master
with:
container_image: ${{ inputs.image }}
nightly: ${{ inputs.nightly }}
afl: ${{ inputs.afl }}