-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (65 loc) · 2.74 KB
/
Action-Test.yml
File metadata and controls
76 lines (65 loc) · 2.74 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Action-Test
run-name: "Action-Test - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"
on:
workflow_dispatch:
pull_request:
schedule:
- cron: '0 0 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: read
jobs:
ActionTestBasic:
name: Action-Test - [Basic]
runs-on: ubuntu-latest
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
# Upload artifact from tests:
- name: Upload artifact [PATH-Windows-TestResults]
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: PATH-Windows-TestResults
path: ./tests/TestResults/PATH-Windows-TestResults
retention-days: 1
if-no-files-found: error
- name: Upload artifact [PSModuleLint-Module-Windows-TestResults]
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: PSModuleLint-Module-Windows-TestResults
path: ./tests/TestResults/PSModuleLint-Module-Windows-TestResults
retention-days: 1
if-no-files-found: error
- name: Upload artifact [PSModuleLint-SourceCode-Windows-TestResults]
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: PSModuleLint-SourceCode-Windows-TestResults
path: ./tests/TestResults/PSModuleLint-SourceCode-Windows-TestResults
retention-days: 1
if-no-files-found: error
- name: Upload artifact [PSModuleTest-Module-Windows-TestResults]
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: PSModuleTest-Module-Windows-TestResults
path: ./tests/TestResults/PSModuleTest-Module-Windows-TestResults
retention-days: 1
if-no-files-found: error
- name: Upload artifact [PSModuleTest-SourceCode-Windows-TestResults]
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: PSModuleTest-SourceCode-Windows-TestResults
path: ./tests/TestResults/PSModuleTest-SourceCode-Windows-TestResults
retention-days: 1
if-no-files-found: error
- name: Action-Test
uses: ./
with:
SourceCodeTestSuites: '[{"OSName": "Windows"}'
PSModuleTestSuites: '[{"OSName": "Windows"}]'
ModuleTestSuites: '[{"TestName": "PATH", "OSName": "Windows"}]'