Skip to content

Commit

Permalink
added submodules for checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
ypopovych committed Aug 29, 2023
1 parent a930392 commit 8a95d01
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ jobs:
runs-on: macOS-13
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: true
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_14.3.1.app
- name: Set release version
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: true
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.tests.xcode }}.app
- name: Build and Test SPM
Expand All @@ -37,6 +39,8 @@ jobs:
options: --cap-add=SYS_PTRACE --security-opt seccomp=unconfined --security-opt apparmor=unconfined
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: true
- name: Build and Test
run: swift test
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ Setup instructions:
Add this to the dependency section of your `Package.swift` manifest:

```Swift
.package(url: "https://github.com/tesseract-one/CSecp256k1.swift.git", from: "0.1.0")
.package(url: "https://github.com/tesseract-one/CSecp256k1.swift.git", from: "0.2.0")
```

- **CocoaPods:** Put this in your `Podfile`:

```Ruby
pod 'CSecp256k1', '~> 0.1'
pod 'CSecp256k1', '~> 0.2'
```

## Usage Examples
Expand Down

0 comments on commit 8a95d01

Please sign in to comment.