GH Actions: Run projects tests

This commit is contained in:
manuroe 2021-04-20 16:13:01 +02:00
parent 5286164d23
commit dbcd2c90ec

27
.github/workflows/tests.yml vendored Normal file
View file

@ -0,0 +1,27 @@
name: Simulator
on:
# Triggers the workflow on any pull request and push to develop
push:
branches: [ develop ]
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: Tests
runs-on: macos-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Setup
run: bundle install
- name: Use right MatrixKit and MatrixSDK versions
run: bundle exec fastlane point_dependencies_to_pending_releases
- name: Run tests
run: bundle exec fastlane test