-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathaction.yaml
More file actions
22 lines (19 loc) · 571 Bytes
/
Copy pathaction.yaml
File metadata and controls
22 lines (19 loc) · 571 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: 'Smoke test'
inputs:
template:
description: 'Template to test'
required: true
runs:
using: composite
steps:
- name: Checkout main
id: checkout_release
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Build template
id: build_template
shell: bash
run: ${{ github.action_path }}/build.sh nix templates/test/${{ inputs.template }}
- name: Test template
id: test_template
shell: bash
run: ${{ github.action_path }}/test.sh nix templates/test/${{ inputs.template }}