mirror of
https://github.com/webfactory/ssh-agent.git
synced 2024-11-22 01:00:50 +00:00
e181806200
This fixes #1. Windows is currently not supported.
19 lines
466 B
YAML
19 lines
466 B
YAML
on: [push, pull_request]
|
|
|
|
jobs:
|
|
load_key_demo:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macOS-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Setup key
|
|
uses: ./
|
|
with:
|
|
ssh-private-key: ${{ secrets.DEMO_KEY }}
|
|
- run: |
|
|
ssh-add -l
|
|
echo SSH_AUTH_SOCK is at $SSH_AUTH_SOCK
|
|
|
|
|