Skip to content

Commit

Permalink
Update python-module.yml (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
normanrz authored Nov 11, 2019
1 parent 94bd6a9 commit 55fe1f5
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/python-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,16 @@ jobs:
build_mac:
runs-on: macOS-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: '3.x' # Version range or exact version of a Python version to use, using semvers version range syntax.
python-version: ${{ matrix.python-version }}
architecture: 'x64' # (x64 or x86)
- name: Install Rust and lz4
run: |
Expand Down Expand Up @@ -92,11 +97,16 @@ jobs:
build_win:
runs-on: windows-2019
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: '3.x' # Version range or exact version of a Python version to use, using semvers version range syntax.
python-version: ${{ matrix.python-version }}
architecture: 'x64' # (x64 or x86)
- name: Install lz4
shell: bash
Expand Down

0 comments on commit 55fe1f5

Please sign in to comment.