Skip to content

Commit 300790d

Browse files
Update issue-791.yml
1 parent 50dc78e commit 300790d

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/issue-791.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
name: Checkout and Setup python
22

33
on:
4-
workflow_dispatch:
4+
push
5+
56
jobs:
67
build:
7-
runs-on: self-hosted
8+
runs-on: ${{ matrix.operating-system }}
9+
strategy:
10+
matrix:
11+
operating-system: [ubuntu-18.04, ubuntu-16.04]
812

913
steps:
1014
- name: Checkout Repository
@@ -13,10 +17,9 @@ jobs:
1317
- name: Setup Python
1418
uses: actions/setup-python@v5
1519
with:
16-
python-version: '3.11'
20+
python-version: '3.5'
1721
- name: Check Python version
1822
run: |
1923
echo "Python path: $PYTHONPATH"
2024
2125
python --version
22-

0 commit comments

Comments
 (0)