Skip to content

Commit 04a5c14

Browse files
authored
Add smoke test (#637)
* Add smoke test * fix
1 parent 57d6cfd commit 04a5c14

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/smoke-test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: smoke-tests
2+
3+
on:
4+
pull_request: ~
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
include:
12+
- repository: elastic/docs-content
13+
- repository: elastic/apm-agent-android
14+
- repository: elastic/cloud-on-k8s
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Bootstrap Action Workspace
19+
uses: ./.github/actions/bootstrap
20+
21+
- uses: actions/checkout@v4
22+
with:
23+
repository: ${{ matrix.repository }}
24+
path: test-repo
25+
26+
- name: Build documentation
27+
run: |
28+
dotnet run --project src/docs-builder -- --strict --path-prefix "/docs" -p test-repo

0 commit comments

Comments
 (0)