-
Notifications
You must be signed in to change notification settings - Fork 16
33 lines (31 loc) · 949 Bytes
/
test.yml
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
name: Amplify release_actions fastlane plugin
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v1
with:
path: vendor/bundle
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile') }}
restore-keys: |
${{ runner.os }}-gem-
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Install dependencies
run: bundle check || bundle install --jobs=4 --retry=3 --path vendor/bundle
working-directory: src/fastlane/release_actions
- name: Run tests
run: bundle exec rake
working-directory: src/fastlane/release_actions
env:
RUBYOPT: '-rostruct' # Remove when https://github.com/fastlane/fastlane/pull/21950 gets released
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: test-results
path: test-results