-
Notifications
You must be signed in to change notification settings - Fork 400
42 lines (39 loc) · 1.17 KB
/
guide-templates.yaml
File metadata and controls
42 lines (39 loc) · 1.17 KB
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
name: Guide Template Checker
on:
pull_request:
paths:
- .github/workflows/guide-templates.yaml
- crates/relayer-cli/**
- scripts/**
- tools/check-guide/**
- guide/src/templates/**
push:
branches: master
paths:
- .github/workflows/guide-templates.yaml
- crates/relayer-cli/**
- scripts/**
- tools/check-guide/**
- guide/src/templates/**
# Cancel previous runs of this workflow when a new commit is added to the PR, branch or tag
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
template-checker:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Check templates
run: bash scripts/auto_gen_templates.sh --mode "check"
- uses: actions-rs/cargo@v1
name: Check guide
with:
command: run
args: --manifest-path tools/check-guide/Cargo.toml