mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 02:56:56 +08:00
Added MSYS2-MinGW64 specific code.
This commit is contained in:
10
.github/workflows/UnitTesting.yml
vendored
10
.github/workflows/UnitTesting.yml
vendored
@@ -79,10 +79,20 @@ jobs:
|
|||||||
python-version: ${{ matrix.python }}
|
python-version: ${{ matrix.python }}
|
||||||
|
|
||||||
- name: 🔧 Install dependencies
|
- name: 🔧 Install dependencies
|
||||||
|
if: matrix.system != 'msys2'
|
||||||
run: |
|
run: |
|
||||||
python -m pip install -U pip wheel
|
python -m pip install -U pip wheel
|
||||||
python -m pip install ${{ inputs.requirements }}
|
python -m pip install ${{ inputs.requirements }}
|
||||||
|
|
||||||
|
- name: 🔧 Install dependencies
|
||||||
|
if: matrix.system == 'msys2'
|
||||||
|
run: |
|
||||||
|
pacman -S --noconfirm mingw64/mingw-w64-x86_64-python-wheel
|
||||||
|
pacman -S --noconfirm mingw64/mingw-w64-x86_64-python-coverage
|
||||||
|
pacman -S --noconfirm mingw64/mingw-w64-x86_64-python-lxml
|
||||||
|
python -m pip install -U pip
|
||||||
|
python -m pip install ${{ inputs.requirements }}
|
||||||
|
|
||||||
- name: ☑ Run unit tests
|
- name: ☑ Run unit tests
|
||||||
if: matrix.system == 'windows'
|
if: matrix.system == 'windows'
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user