This repository has been archived by the owner on May 10, 2024. It is now read-only.
paddle-php-sdk PR# 45 - Address and Business entities now include cus… #76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests | |
on: | |
# release: | |
# types: [created] | |
push: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
environment: dev | |
strategy: | |
matrix: | |
python-version: [ '3.11', '3.12', '3.13' ] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
allow-prereleases: ${{ matrix.python-version == '3.13' }} | |
python-version: ${{ matrix.python-version }} | |
- name: Install pip dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install ".[dev]" | |
- name: Run Python tests | |
run: pytest |