-
Notifications
You must be signed in to change notification settings - Fork 517
43 lines (39 loc) · 1.02 KB
/
sdk.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: SDK 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:
sdk-tests:
name: "SDK: ${{ matrix.node.name }}"
strategy:
fail-fast: false
matrix:
node:
- name: "auction-house"
- name: "candy-machine"
- name: "fixed-price-sale"
skip_test: true
- name: "gumdrop"
# - name: "hydra"
# skip_test: true
- name: "nft-packs"
skip_test: true
- name: "token-entangler"
uses: ./.github/workflows/sdk-reusable.yml
with:
name: ${{ matrix.node.name }}
skip_test: ${{ contains(matrix.node.skip_test, 'true') }}
cache: ${{ contains(inputs.cache, 'true') }}
changes: ${{ !contains(inputs.changes, 'false') }}