We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ci.yml
1 parent 69a923c commit 740f7e9Copy full SHA for 740f7e9
1 file changed
{{ cookiecutter.name | lower }}/.github/workflows/ci.yml
@@ -1,4 +1,3 @@
1
-#{% raw %}
2
name: "{{ cookiecutter.name | lower }}"
3
4
on:
@@ -27,7 +26,9 @@ jobs:
27
26
with:
28
args: --strict
29
env:
+ {% raw %}
30
DIFF_BASE: ${{ github.base_ref }}
31
+ {% endraw %}
32
Latest:
33
name: Test Latest (iOS, macOS, tvOS, watchOS)
34
runs-on: macOS-12
@@ -63,6 +64,7 @@ jobs:
63
64
sdk: macosx
65
{% endif %}
66
steps:
67
68
- uses: actions/checkout@v3
69
- name: ${{ matrix.name }}
70
run: xcodebuild test -scheme "${{ matrix.scheme }}" -destination "${{ matrix.destination }}" clean -enableCodeCoverage YES -resultBundlePath "./${{ matrix.sdk }}.xcresult" | xcpretty -r junit
@@ -72,4 +74,4 @@ jobs:
72
74
token: ${{ secrets.CODECOV_TOKEN }}
73
75
xcode: true
76
xcode_archive_path: "./${{ matrix.sdk }}.xcresult"
-#{% endraw %}
77
0 commit comments