From 407d337817c0358fef595cbf8dfde001f306f832 Mon Sep 17 00:00:00 2001 From: Rob Emery Date: Sun, 19 Jul 2026 09:10:27 +0000 Subject: [PATCH 1/2] Every time I come to this, it doesn't build for me Hopefully this should be able to keep track of where the breakages are --- .github/workflows/on-push.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/on-push.yml diff --git a/.github/workflows/on-push.yml b/.github/workflows/on-push.yml new file mode 100644 index 00000000..0469d68d --- /dev/null +++ b/.github/workflows/on-push.yml @@ -0,0 +1,32 @@ +name: Build and test + +on: + push: + branches: + - "*" + tags: + - "*" + +jobs: + + build: + runs-on: ubuntu-latest + + steps: + + - id: checkout-code + uses: actions/checkout@v3 + with: + path: source + + - id: build + run: | + pushd source + make build + popd + - id: test + run: | + pushd source + make test + popd + From 369492d0625b9dea1ceed943828ee03e937223fc Mon Sep 17 00:00:00 2001 From: Rob Emery Date: Sun, 19 Jul 2026 10:00:25 +0000 Subject: [PATCH 2/2] Update on-push.yml I don't think there are any tests that work in this project --- .github/workflows/on-push.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/on-push.yml b/.github/workflows/on-push.yml index 0469d68d..4fbc054d 100644 --- a/.github/workflows/on-push.yml +++ b/.github/workflows/on-push.yml @@ -23,10 +23,3 @@ jobs: run: | pushd source make build - popd - - id: test - run: | - pushd source - make test - popd -