Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
justSmK committed Nov 21, 2024
1 parent d3f37a0 commit a6cdd17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ jobs:
run: top -l 1 -s 0 | grep "CPU usage"
- name: Check memory usage
run: top -l 1 -s 0 | grep PhysMem
- name: Check available disk space
run: df -h

- name: Run unit tests
run: bundle exec fastlane unitTestLane
Expand Down
4 changes: 2 additions & 2 deletions fastlane/Fastfile.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class Fastfile: LaneFile {
project: .userDefined(project),
scheme: "Mindbox",
onlyTesting: ["MindboxTests"],
skipBuild: true, // Пропускаем сборку перед тестами
clean: false, // clean перед skipBuild
clean: false,
xcodebuildFormatter: "xcpretty",
skipBuild: true,
xcargs: "CI=true CODE_SIGNING_ALLOWED=NO"
)
}
Expand Down

0 comments on commit a6cdd17

Please sign in to comment.