Hello,
I have created this package to house functions that I find useful at the link below. I am moving from travis.ci to github actions. The action is failing on Linux because it does not have the ssh package installed, which I assume is because the Linux dependencies for the ssh package are not being installed.
In my travis yml I used this to resovle this issue:
before_install:
- sudo apt update
- sudo apt-get update
- sudo apt-get -y install libssh-dev #package ssh dependency
How do I resolve it in github actions.
Thanks!