Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
drunkdream committed Oct 5, 2020
1 parent 1920960 commit 45eb5d9
Showing 1 changed file with 26 additions and 23 deletions.
49 changes: 26 additions & 23 deletions .github/workflows/ssh.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
name: SSH-Test
on:
watch:
types: started
jobs:
SSH:
name: Run on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
python-version: [3.6]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: SSH connection to Actions
run: |
python -m pip install -r requirements.txt
python -m tmate
name: SSH-Test
on:
watch:
types: started
jobs:
SSH:
name: Run on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
python-version: [3.6]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: SSH connection to Actions
run: |
python -m tmate

0 comments on commit 45eb5d9

Please sign in to comment.