From ff4b484e8838f6fd941f6b61e4f6d8500a481db3 Mon Sep 17 00:00:00 2001 From: Libec Date: Sun, 29 Jan 2023 17:38:04 +0100 Subject: [PATCH] Add yaml for GitHub workflows --- .github/workflows/tests.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..5f8435b --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,14 @@ +name: Actions + +on: [push] + +jobs: + tests: + name: Run unit tests + runs-on: macos-13 + steps: + - uses: actions/checkout@v3 + with: + xcode-version: '15.2' + - name: Run tests + run: xcodebuild test -project ClipNinja.xcodeproj -scheme ClipNinja