-
Notifications
You must be signed in to change notification settings - Fork 18
59 lines (50 loc) · 1.43 KB
/
test-templates.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Test Templates
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test-readability:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: "[Test] readability"
run: dotnet fsi CI/templatesEnsure.fsx
quality-control-tag-coherence:
runs-on: windows-latest
needs: test-readability
steps:
- uses: actions/checkout@v3
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: "[Test] tag coherence"
run: dotnet fsi CI/coherentTagsEnsure.fsx
quality-control-tag-categories:
runs-on: windows-latest
needs: test-readability
steps:
- uses: actions/checkout@v3
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: "[Test] tag category"
run: dotnet fsi CI/tagCategoryEnsure.fsx
# quality-control-template-diversity:
# runs-on: windows-latest
# needs: test-readability
# steps:
# - uses: actions/checkout@v3
# - name: Setup .NET 6.0
# uses: actions/setup-dotnet@v3
# with:
# dotnet-version: '6.0.x'
# - name: "[Test] template diversity"
# run: dotnet fsi CI/templateDiversityEnsure.fsx