From bd963d649283e492b492485ea0dfe38d2b987fe1 Mon Sep 17 00:00:00 2001 From: Tao <79176764+yeetfield@users.noreply.github.com> Date: Tue, 4 Mar 2025 18:48:19 +0000 Subject: [PATCH] Add a Github action --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..3e25c37 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,9 @@ +name: build +run-name: Run `make build` +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: make build \ No newline at end of file