We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11dd0d7 commit 0d0bcfdCopy full SHA for 0d0bcfd
1 file changed
.github/workflows/github-actions.yml
@@ -1,3 +1,17 @@
1
name: github-actions
2
on: [push, pull_request]
3
-jobs
+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