-
-
Notifications
You must be signed in to change notification settings - Fork 4
55 lines (40 loc) · 1.1 KB
/
cff-validator-complete-matrix.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
on:
push:
branches:
- main
schedule:
- cron: '30 16 1 * 2,5'
workflow_dispatch:
# Run on available environments on GHA
# as on 2022-10-21
name: full-test-action
jobs:
full-test-action:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {os: ubuntu-latest}
- {os: macos-latest}
- {os: windows-latest}
- {os: windows-2019}
- {os: ubuntu-22.04}
#- {os: ubuntu-18.04}
- {os: macos-12}
#- {os: macos-10.15}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Validate CITATION.cff
uses: dieghernan/cff-validator@main
with:
cache-version: 3
- name: Validate examples/key-complete/CITATION.cff
uses: dieghernan/cff-validator@main
with:
citation-path: "./examples/key-complete/CITATION.cff"
cache-version: 3