From a85a93d657345201a718734e780b8145fd3ec722 Mon Sep 17 00:00:00 2001 From: Sarah Kelley Date: Thu, 30 Jul 2026 09:51:44 -0400 Subject: [PATCH] Add GHA CI skeleton Adds a Github Actions workflow to the repo to be triggered on pull requests and on pushes to the repo. Right now the workflow is a no-op; adding meaningful build, test, and deploy steps will come later once we have signal that the infrastructure is working. --- .github/workflows/devel-build.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/devel-build.yml diff --git a/.github/workflows/devel-build.yml b/.github/workflows/devel-build.yml new file mode 100644 index 0000000..43f4a0d --- /dev/null +++ b/.github/workflows/devel-build.yml @@ -0,0 +1,13 @@ +name: Cardinal CI workflow +run-name: Cardinal CI workflow run +on: + - push +jobs: + build: + # TODO confirm the base image we should use. "latest" + # leaves us open to unexpected breakage if there's a + # breaking change in the base image; we should control + # when we update the base. + runs-on: ubuntu-latest + steps: + - run: echo "Running the Cardinal CI workflow. Triggered by ${{ github.event_name }}"