From a621043c9845df8163f8b2e00ae11892c596eb1e Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Sun, 15 Mar 2020 16:28:16 -0700 Subject: [PATCH] Add test workflow --- .github/workflows/test.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..a35ddb1 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,13 @@ +name: Test + +on: + push: + - '*' +jobs: + build: + runs-on: macOS-latest + timeout-minutes: 10 + steps: + - uses: actions/checkout@v1 + - name: Test + run: xcrun xcodebuild test -project Secretive.xcodeproj -scheme Secretive \ No newline at end of file