Skip to content

bump versions for publish #108

bump versions for publish

bump versions for publish #108

Workflow file for this run

name: Linux
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- name: "checkout repo"
uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Install libssh
run: sudo apt install libssh-dev
- name: Build and test
run: |
rustc -V
cargo -V
cargo test
cargo run --example link --features vendored
cargo run --example link --features vendored,vendored-openssl