-
-
Notifications
You must be signed in to change notification settings - Fork 203
43 lines (40 loc) · 1.2 KB
/
test-fixtures.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
name: Test fixtures
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-fixtures:
name: Test fixtures
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
- fixtures-name: test-ignore-tags
- fixtures-name: test-topo-order
command: --latest
- fixtures-name: test-date-order
command: --latest
- fixtures-name: test-topo-order-arg
command: --latest --topo-order
- fixtures-name: test-latest-with-one-tag
command: --latest
- fixtures-name: test-commit-footers
- fixtures-name: test-commit-preprocessors
- fixtures-name: test-custom-scope
- fixtures-name: test-limit-commits
- fixtures-name: test-skip-breaking-changes
- fixtures-name: test-split-commits
- fixtures-name: test-keep-a-changelog-links
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run a fixtures test
uses: ./.github/actions/run-fixtures-test
with:
fixtures-dir: .github/fixtures/${{ matrix.fixtures-name }}
command: ${{ matrix.command }}