Skip to content

Commit 2b645dc

Browse files
committed
Split validate and build tasks
1 parent 80a35b1 commit 2b645dc

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.github/workflows/build-rfc.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,7 @@ permissions:
1010
id-token: write
1111

1212
jobs:
13-
validate:
14-
name: Validate XML samples
15-
runs-on: ubuntu-latest
16-
steps:
17-
- uses: actions/checkout@v4
18-
- run: sudo apt-get update && sudo apt-get install -q xmlstarlet
19-
- run: (cd xml; ./validate.sh)
20-
2113
build:
22-
needs: validate
2314
name: Generate HTML/TXT
2415
runs-on: ubuntu-latest
2516
steps:
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Validate XML samples
2+
on: push
3+
4+
jobs:
5+
validate:
6+
name: Validate XML samples
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- run: sudo apt-get update && sudo apt-get install -q xmlstarlet
11+
- run: (cd xml; ./validate.sh)
12+

0 commit comments

Comments
 (0)