-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #183 from diogot/update
Update dependencies
- Loading branch information
Showing
15 changed files
with
140 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: 'Tests' | ||
|
||
on: | ||
pull_request: | ||
type: [opened, synchronize, reopened] | ||
workflow_call: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
test: | ||
name: 'Run Tests' | ||
runs-on: macos-14 | ||
concurrency: | ||
group: ${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
steps: | ||
- name: 'Checkout code' | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: 'true' | ||
|
||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.2.2' | ||
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | ||
|
||
- name: 'Setup environment' | ||
run: rake setup | ||
shell: bash | ||
|
||
- name: 'Test' | ||
run: bundle exec rake xcode:tests[true] | ||
shell: bash | ||
env: | ||
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }} | ||
|
||
- name: 'Archive logs' | ||
if: ${{ always() }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "test-logs-${{ github.run_attempt }}" | ||
path: ${{ vars.ARTIFACTS_DEFAULT_PATH }}/ | ||
|
||
- name: 'Archive results' | ||
if: ${{ always() }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "test-results-${{ github.run_attempt }}" | ||
path: ${{ vars.TEST_REPORTS_DEFAULT_PATH }}/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.7.2 | ||
3.2.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-136 KB
...erTests/AccessDeniedViewControllerTests_testSnapshot_iPhone_16_1_393x852@3x.png
Binary file not shown.
Binary file added
BIN
+137 KB
...erTests/AccessDeniedViewControllerTests_testSnapshot_iPhone_17_2_393x852@3x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed
BIN
-147 KB
...AuthorizationRequestViewControllerTests_testSnapshot_iPhone_16_1_393x852@3x.png
Binary file not shown.
Binary file added
BIN
+147 KB
...AuthorizationRequestViewControllerTests_testSnapshot_iPhone_17_2_393x852@3x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ SPEC CHECKSUMS: | |
|
||
PODFILE CHECKSUM: fa9a1dea4fc4a68cb5181c079745626775880c04 | ||
|
||
COCOAPODS: 1.11.3 | ||
COCOAPODS: 1.15.2 |
Oops, something went wrong.