Skip to content

Replacing gumdrop with a README #1210

Replacing gumdrop with a README

Replacing gumdrop with a README #1210

Workflow file for this run

name: Program Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
inputs:
cache:
description: 'Use Cached Dependencies'
required: true
type: boolean
changes:
description: 'Only run when files change'
required: true
type: boolean
jobs:
program-tests:
name: 'Program: ${{ matrix.node.name }}'
strategy:
fail-fast: false
matrix:
node:
- name: 'auctioneer'
- name: 'candy-machine'
- name: 'auction-house'
- name: 'fixed-price-sale'
- name: 'hydra'
- name: 'token-entangler'
uses: ./.github/workflows/program-reusable.yml
with:
name: ${{ matrix.node.name }}
cache: ${{ contains(inputs.cache, 'true') }}
changes: ${{ !contains(inputs.changes, 'false') }}