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