2021-11-28 20:19:49 +00:00
|
|
|
name: Unit Tests
|
|
|
|
|
|
|
|
on:
|
2022-10-30 10:53:53 +00:00
|
|
|
pull_request:
|
|
|
|
types: [ opened, synchronize ]
|
2021-12-01 22:21:39 +00:00
|
|
|
paths-ignore:
|
|
|
|
- '.beta-*'
|
2022-10-30 10:53:53 +00:00
|
|
|
- '**/*.md'
|
2022-10-30 11:56:49 +00:00
|
|
|
- '**/*.sh'
|
|
|
|
- '**/*.yml'
|
2022-10-30 10:53:53 +00:00
|
|
|
- 'Passepartout/App/fastlane/**'
|
2021-11-28 20:19:49 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
run_tests:
|
2021-12-03 14:31:19 +00:00
|
|
|
name: Run tests
|
2022-05-17 14:36:53 +00:00
|
|
|
runs-on: macos-12
|
2022-10-30 10:53:53 +00:00
|
|
|
timeout-minutes: 15
|
2021-11-28 20:19:49 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: true
|
2021-12-03 14:31:19 +00:00
|
|
|
- uses: maxim-lobanov/setup-xcode@v1
|
|
|
|
with:
|
|
|
|
xcode-version: latest-stable
|
2022-10-30 10:53:53 +00:00
|
|
|
- uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
|
|
|
bundler-cache: true
|
|
|
|
- uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: "^1.17"
|
2021-11-28 20:19:49 +00:00
|
|
|
- name: Run tests
|
|
|
|
run: |
|
2022-10-30 10:53:53 +00:00
|
|
|
bundle exec fastlane --env beta,ios scan
|