-
-
Notifications
You must be signed in to change notification settings - Fork 52
36 lines (30 loc) · 825 Bytes
/
integration-test.yml
File metadata and controls
36 lines (30 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: integration-test
on:
push:
branches:
- master
pull_request:
jobs:
integration-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11.9'
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1.2'
- if: matrix.os != 'windows-latest'
name: Install Fastlane {{ matrix.os }}
run: sudo gem install fastlane
- if: matrix.os == 'windows-latest'
name: Install Fastlane {{ matrix.os }}
run: gem install fastlane
- name: Run bundle install
run: bundle install
- name: Run integration tests
run: test/integration-test.sh