File tree Expand file tree Collapse file tree
{{ cookiecutter.name | lower }}/.github/workflows Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22All notable changes to this project will be documented in this file.
33
44#### 1.x Releases
5- - ` 1.1.x ` Releases - [ 1.1.0] ( #110 )
5+ - ` 1.1.x ` Releases - [ 1.1.0] ( #110 ) | [ 1.1.1 ] ( #111 )
66- ` 1.0.x ` Releases - [ 1.0.0] ( #100 )
77
8+ ## [ 1.1.1] ( https://github.com/space-code/package-template/releases/tag/1.1.1 )
9+ Released on 2023-12-18
10+
11+ ## Fixed
12+ - Implementing the handling of failed tests on GitHub Actions
13+ - Added in Pull Request [ #6 ] ( https://github.com/space-code/package-template/pull/6 ) .
14+
815## [ 1.1.0] ( https://github.com/space-code/package-template/releases/tag/1.1.0 )
916Released on 2023-12-01
1017
1118## Added
1219- Update GitHub Actions configuration
13- - Added in Pull Request [ #4 ] ( https://github.com/space-code/package-template/pull/4 )
20+ - Added in Pull Request [ #4 ] ( https://github.com/space-code/package-template/pull/4 ) .
1421- Integrate ` danger `
1522 - Added in Pull Request [ #2 ] ( https://github.com/space-code/package-template/pull/2 ) .
1623- Add issues and pull request templates
1724 - Added in Pull Request [ #1 ] ( https://github.com/space-code/package-template/pull/1 ) .
1825
19- ## Fixes
26+ ## Fixed
2027- Fix deprecated SwiftLint rules
2128 - Added in Pull Request [ #3 ] ( https://github.com/space-code/package-template/pull/3 ) .
2229
Original file line number Diff line number Diff line change 6464 {% raw %}
6565 - uses : actions/checkout@v3
6666 - name : ${{ matrix.name }}
67- run : xcodebuild test -scheme "${{ matrix.scheme }}" -destination "${{ matrix.destination }}" clean -enableCodeCoverage YES -resultBundlePath "./${{ matrix.sdk }}.xcresult"
67+ run : xcodebuild test -scheme "${{ matrix.scheme }}" -destination "${{ matrix.destination }}" clean -enableCodeCoverage YES -resultBundlePath "./${{ matrix.sdk }}.xcresult" || exit 1
6868 - name : Upload coverage reports to Codecov
6969 uses : codecov/codecov-action@v3.1.0
7070 with :
You can’t perform that action at this time.
0 commit comments