Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

build(deps): bump peter-evans/dockerhub-description from 3 to 4 #243

build(deps): bump peter-evans/dockerhub-description from 3 to 4

build(deps): bump peter-evans/dockerhub-description from 3 to 4 #243

Workflow file for this run

---
name: Python Tests
on:
pull_request:
branches: [master, nightly]
types: [opened, synchronize, reopened]
jobs:
pytest:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python
uses: LizardByte/action-setup-python@master
with:
python-version: '2.7'
- name: Install python dependencies
shell: bash
run: |
python -m pip --no-python-version-warning --disable-pip-version-check install --upgrade \
pip setuptools wheel
python -m pip --no-python-version-warning --disable-pip-version-check install -r requirements-dev.txt
python -m pip --no-python-version-warning --disable-pip-version-check install \
--target=./Contents/Libraries/Shared -r requirements.txt --no-warn-script-location
- name: Test with pytest
shell: bash # our Python 2.7 setup action doesn't support PowerShell
run: |
python -m pytest -v