Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaliy-pavlenko committed May 22, 2024
1 parent 6c7e25a commit f7501df
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-cocoapods.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ env:

jobs:
release-cocoapods:
runs-on: macos-12
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Ruby & Bundle setup
uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@v1.176.0
with:
ruby-version: 2.7
bundler-cache: true
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ env:
jobs:
test-and-release:
# Clone of main test workflow
runs-on: macos-12
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Ruby & Bundle setup
uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@v1.176.0
with:
ruby-version: 2.7
bundler-cache: true
Expand Down Expand Up @@ -53,10 +53,10 @@ jobs:
bundle exec fastlane format_check
- name: Tests reports upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: tests-reports
name: tests-reports-${{ matrix.runs-on }}
path: "fastlane/test_output"

# Publish additional steps to test job
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test_0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ env:

jobs:
test:
runs-on: macos-12
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Ruby & Bundle setup
uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@v1.176.0.176.0
with:
ruby-version: 2.7
bundler-cache: true
Expand Down Expand Up @@ -58,8 +58,8 @@ jobs:
bundle exec fastlane test_0
- name: Tests reports upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: tests-reports
name: tests-reports-${{ matrix.runs-on }}
path: "fastlane/test_output"
10 changes: 5 additions & 5 deletions .github/workflows/test_1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ env:

jobs:
test:
runs-on: macos-12
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Ruby & Bundle setup
uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@v1.176.0
with:
ruby-version: 2.7
bundler-cache: true
Expand Down Expand Up @@ -58,8 +58,8 @@ jobs:
bundle exec fastlane test_1
- name: Tests reports upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: tests-reports
name: tests-reports-${{ matrix.runs-on }}
path: "fastlane/test_output"
10 changes: 5 additions & 5 deletions .github/workflows/test_2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ env:

jobs:
test:
runs-on: macos-12
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Ruby & Bundle setup
uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@v1.176.0
with:
ruby-version: 2.7
bundler-cache: true
Expand Down Expand Up @@ -58,8 +58,8 @@ jobs:
bundle exec fastlane test_2
- name: Tests reports upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: tests-reports
name: tests-reports-${{ matrix.runs-on }}
path: "fastlane/test_output"

0 comments on commit f7501df

Please sign in to comment.