-
-
Notifications
You must be signed in to change notification settings - Fork 11
35 lines (27 loc) · 631 Bytes
/
template.yml
File metadata and controls
35 lines (27 loc) · 631 Bytes
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
name: Run Tests
on:
workflow_call:
inputs:
os:
required: true
type: string
production:
required: false
type: bool
default: true
jobs:
test:
name: ${{ inputs.os }}
runs-on: ${{ inputs.os }}
timeout-minutes: 10
steps:
- name: 🛒 Checkout repository
uses: actions/checkout@v6
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '8.0.x'
- name: 🛠️ Run Smoke Test (Production)
run: ./smoke-tests.ps1 -Production
working-directory: test
shell: pwsh
condition: ${{ inputs.production }}