From 4de3156331b489b090284c3be8e36068e9efba6c Mon Sep 17 00:00:00 2001 From: Jason Rudolph Date: Wed, 24 Jul 2024 20:22:39 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20Add=20beginnings=20of=20basic=20?= =?UTF-8?q?CI=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 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..9ade1f7 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,14 @@ +name: CI + +on: + push + +jobs: + build: + runs-on: macos-14 + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - run: echo "hello"