10000 CI: install Python · pythonnet/codecs@769d203 · GitHub
[go: up one dir, main page]

Skip to content

Commit 769d203

Browse files
committed
CI: install Python
1 parent 6f75c16 commit 769d203

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/build+test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,19 @@ on:
1111
jobs:
1212
build:
1313
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
python-version: [3.5, 3.7]
1417
steps:
1518
- uses: actions/checkout@v2
1619
- name: Setup .NET Core
1720
uses: actions/setup-dotnet@v1
1821
with:
1922
dotnet-version: 3.1.101
23+
- name: Set up Python ${{ matrix.python-version }}
24+
uses: actions/setup-python@v1
25+
with:
26+
python-version: ${{ matrix.python-version }}
2027
- name: Build
2128
run: dotnet build --configuration Release
2229
- name: Test

0 commit comments

Comments
 (0)
0