From a0b4c7f632cb6f1d1c3ce0a8f3dab565ac3b19e1 Mon Sep 17 00:00:00 2001 From: Sven Tiigi Date: Thu, 14 Nov 2019 18:28:13 +0100 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..2aa11af --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: CI + +on: [push] + +jobs: + tests: + name: Unit-Tests + runs-on: macOS-latest + steps: + - uses: actions/checkout@v1 + - name: fastlane ios tests + run: fastlane ios tests + compatibility: + name: Compatibility-Tests + runs-on: macOS-latest + steps: + - uses: actions/checkout@v1 + - name: fastlane ios compatibilityTests + run: fastlane ios compatibilityTests