You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2023/01/16 12:26:27 UTC

[qpid-site] 02/02: NO-JIRA: add a GHA CI job following removal of Travis job

This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git

commit 524ec1d62ce481fdd5f842bd55038b09763c43d0
Author: Robbie Gemmell <ro...@apache.org>
AuthorDate: Mon Jan 16 12:25:34 2023 +0000

    NO-JIRA: add a GHA CI job following removal of Travis job
---
 .github/workflows/build.yml | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 000000000..7e95b7e63
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,29 @@
+name: "Build"
+
+on: [push, pull_request, workflow_dispatch]
+
+jobs:
+  build:
+    runs-on: ubuntu-22.04
+
+    steps:
+      - uses: actions/checkout@v3
+
+      - name: Setup Python
+        uses: actions/setup-python@v3
+        with:
+          python-version: 3.10.9
+
+      - name: Build Content
+        run: |
+          make render
+          make publish
+
+      - name: Check Links
+        run: |
+          make check-links
+
+      - name: Check Output Files
+        run: |
+          make check-output-files
+


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org