We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06785c9 commit 7fdce90Copy full SHA for 7fdce90
.github/workflows/build.yaml
.github/workflows/reusable-build.yaml
@@ -65,6 +65,7 @@ jobs:
65
uses: actions/checkout@v4
66
with:
67
fetch-depth: 1
68
+
69
- name: Set deployment variables
70
run: |
71
# Network specific variables
.github/workflows/test.yaml
@@ -18,6 +18,10 @@ on:
18
19
jobs:
20
test:
21
- uses: ./.github/workflows/reusable_test.yaml
22
- with:
23
- program: ${{ github.event.inputs.program || 'transaction_example' }}
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
24
25
+ - uses: ./.github/actions/run-tests/
26
+ with:
27
+ program: ${{ github.event.inputs.program }}
0 commit comments