Add an example workflow that can be used for testing as well

This commit is contained in:
Matthias Pigulla 2019-09-15 07:03:17 +00:00
parent e9cec5c598
commit 13fedf7287

18
.github/workflows/demo.yml vendored Normal file
View file

@ -0,0 +1,18 @@
on: [push]
jobs:
load_key_demo:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Setup key
uses: webfactory/ssh-agent@master
with:
ssh-private-key: ${{ secrets.DEMO_KEY }}
- run: |
ssh-add -l
printenv