Replace cargo-swift with equivalent script #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and test | |
on: | |
push: | |
branches: main | |
pull_request: | |
env: | |
rust_version: "1.72" | |
swift_version: "5.9" | |
jobs: | |
build_fmt_test: | |
runs-on: macos-13 | |
steps: | |
- name: Setup Swift | |
uses: swift-actions/setup-swift@v1 | |
with: | |
swift-version: "${{env.swift_version}}" | |
- name: Setup Rust | |
run: | | |
rustup default "${{env.rust_version}}" | |
rustup target install aarch64-apple-darwin aarch64-apple-ios aarch64-apple-ios-sim x86_64-apple-darwin x86_64-apple-ios | |
- name: Check out sources | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Build rust bindings | |
run: ./build.sh | |
working-directory: ./lib/crypto | |
- name: Check formatting | |
run: swift package plugin --allow-writing-to-package-directory swiftformat --lint | |
- name: Build project | |
run: swift build | |
- name: Run tests | |
run: swift test |