aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/format-validation.yml
blob: 5928d03765844f2446e60b5be6840950e95aea48 (plain)
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
name: Format validation

on:
  push:
    paths-ignore:
      - '*'
      - '!/test/writer.*'
      - '!/test/tables.*'
  pull_request:
    paths-ignore:
      - '*'
      - '!/test/writer.*'
      - '!/test/tables.*'

jobs:
  jats:
    name: JATS
    runs-on: ubuntu-latest
    env:
      VALIDATOR_URL: "https://jats-validator.hubmed.org/dtd/"
    strategy:
      fail-fast: false
      matrix:
        tagset:
          - articleauthoring
          - publishing
          - archiving
        file:
          - writer
          # tables are not supported yet, the files contain only snippets.
    steps:
      - name: Checkout
        uses: actions/checkout@v2

      - name: Validate
        run: |
          filename=test/${{ matrix.file }}.jats_${{ matrix.tagset }}
          echo "$filename"
          json="$(curl --form "xml=@${filename}" --silent "$VALIDATOR_URL")"
          echo "$json"
          err_count="$(echo "$json" | jq '.errors | length')"
          if [ "$err_count" -eq 0 ]; then
              exit 0
          else
              printf "Validator report:\n%s" "$json"
              exit 1
          fi