Skip to content

ssh/key (private-key-from-file): Handle an auth callback #268

ssh/key (private-key-from-file): Handle an auth callback

ssh/key (private-key-from-file): Handle an auth callback #268

Workflow file for this run

name: Ubuntu 20.04/Guile 2.2
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt update
sudo apt install guile-2.2 guile-2.2-libs guile-library
sudo apt install guile-2.2-dev texinfo texlive
sudo apt install automake autoconf
sudo apt install libssh-dev
sudo apt install libtool
sudo apt install gcc-9
- name: Checkout repository
uses: actions/checkout@v2
- name: Autoreconf
run: autoreconf -vif
- name: Configure
run: ./configure
- name: Make
run: make
- name: Run tests
run: make check
- name: Make distribution
run: make distcheck