Skip to content

Commit 0d0bcfd

Browse files
committed
Fixed yaml syntax
1 parent 11dd0d7 commit 0d0bcfd

1 file changed

Lines changed: 15 additions & 1 deletion

File tree

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
11
name: github-actions
22
on: [push, pull_request]
3-
jobs
3+
jobs:
4+
unit-testing:
5+
runs-on: {{ matrix.os }}
6+
strategy:
7+
matrix:
8+
os: [ubuntu-latest, macos-latest, windows-latest]
9+
python-version: [3.6', '3.7', '3.8']
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Set up Python
13+
uses: actions/setup-python@v2
14+
with:
15+
python-version: ${{ matrix.python-version }}
16+
- name: Display Python version
17+
run: python -c "import sys; print(sys.version)"

0 commit comments

Comments
 (0)