Skip to content

🔧 change sftp methods to accept &str and &Path #1

🔧 change sftp methods to accept &str and &Path

🔧 change sftp methods to accept &str and &Path #1

Workflow file for this run

name: macOS
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-11]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Build and test
run: |
rustc -V
cargo -V
cargo build
tests/run_integration_tests.sh
rustdoc --test README.md -L target
cargo run --manifest-path systest/Cargo.toml