Skip to content

Commit 84fdcc7

Browse files
author
Maxim Lobanov
committed
Update readme
1 parent f4e6010 commit 84fdcc7

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,21 +86,21 @@ jobs:
8686
with:
8787
podfile-path: __tests__/podfile-example/Podfile.lock
8888

89-
#- name: Validate version
90-
# run: pod --version | grep "1.5.3"
89+
- name: Validate version
90+
run: pod --version | grep "1.5.3"
9191

9292
- name: setup-cocoapods
9393
uses: ./
9494
with:
9595
podfile-path: __tests__/podfile-example/Podfile2.lock
9696

97-
#- name: Validate version
98-
# run: pod --version | grep "1.3.1"
97+
- name: Validate version
98+
run: pod --version | grep "1.3.1"
9999

100100
- name: setup-cocoapods
101101
uses: ./
102102
with:
103103
podfile-path: __tests__/podfile-example/Podfile3.lock
104104

105-
#- name: Validate version
106-
# run: pod --version | grep "1.7.0"
105+
- name: Validate version
106+
run: pod --version | grep "1.7.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Action supports two ways to specify Cocoapods version:
1010
| version | Specify version of Cocoapods to install | `latest`, `1.5.2`, `1.9.1` |
1111
| podfile-path | Specify path to `Podfile.lock` file to determine Cocoapods version dynamically | `myApp/Podfile.lock` |
1212

13-
Only one parameter `version` or `podfile-path` should be specified at the same time.
13+
At the same time, only one parameter should be specified.
1414

1515
# Usage
1616
```

__tests__/installer.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe("CocoapodsInstaller", () => {
3535
it.each([
3636
["Podfile.lock", "1.5.3"],
3737
["Podfile2.lock", "1.3.1"],
38-
["Podfile3.lock", "1.7.0"],
38+
["Podfile3.lock", "1.9.1"],
3939
["Podfile4.lock", null]
4040
])("test case %#", (input: string, expected: string | null) => {
4141
const testCasePath = path.resolve(path.join(__dirname, "podfile-example", input));

__tests__/podfile-example/Podfile3.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ SPEC CHECKSUMS:
1313

1414
PODFILE CHECKSUM: 6e25dc1d1d6302e538a09a3e0120a572a5fbd5d1
1515

16-
COCOAPODS: 1.7.0
16+
COCOAPODS: 1.9.1

0 commit comments

Comments
 (0)