From a54c90f055002bae7ba91c866b23be9555807ff4 Mon Sep 17 00:00:00 2001 From: colejdoud Date: Wed, 24 Sep 2025 11:47:36 -0700 Subject: [PATCH 1/4] Create compile.yml for continuous development --- .github/workflows/compile.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/compile.yml diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml new file mode 100644 index 0000000..b9ece80 --- /dev/null +++ b/.github/workflows/compile.yml @@ -0,0 +1,12 @@ +name: compile +on: + push: + branches: main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: compile code + uses: workflows/compile@v1 + From 4a448811f089b76308dc2684fdd972140c8e6675 Mon Sep 17 00:00:00 2001 From: colejdoud Date: Wed, 24 Sep 2025 11:51:16 -0700 Subject: [PATCH 2/4] Update README.md, closes #2 --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index bbcf55a..9d2a904 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,2 @@ # autovalidate - -I like that app too! - -This repo is compatible with the [cpp-container docker container](https://github.com/ChicoState/cpp-container). \ No newline at end of file +[![compile](https://github.com/colejdoud/autovalidate/actions/workflows/compile.yml/badge.svg)](https://github.com/colejdoud/autovalidate/actions/workflows/compile.yml) From 605ec5f43504fde7831c4dc62905b063a4d6b337 Mon Sep 17 00:00:00 2001 From: colejdoud Date: Wed, 24 Sep 2025 11:52:52 -0700 Subject: [PATCH 3/4] Update compile.yml --- .github/workflows/compile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index b9ece80..0f36b5d 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -8,5 +8,5 @@ jobs: runs-on: ubuntu-latest steps: - name: compile code - uses: workflows/compile@v1 + uses: autovalidate/.githubworkflows/compile@v1 From 22c5349869afbb6690effe9832aa1a6b93bd5e83 Mon Sep 17 00:00:00 2001 From: colejdoud Date: Wed, 24 Sep 2025 11:53:42 -0700 Subject: [PATCH 4/4] Update README.md, final version