Skip to content

Merge pull request #165 from dajiaji/pre-commit-ci-update-config #401

Merge pull request #165 from dajiaji/pre-commit-ci-update-config

Merge pull request #165 from dajiaji/pre-commit-ci-update-config #401

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
name: Python CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Python ${{ matrix.python-version }} on ${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
env:
USING_COVERAGE: "3.10"
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install tox-gh-actions poetry
- name: Run tox
run: poetry run tox
- name: Upload coverage to Codecov
if: contains(env.USING_COVERAGE, matrix.python-version) && matrix.platform == 'ubuntu-latest'
uses: codecov/codecov-action@v1
with:
fail_ci_if_error: true
package:
name: Build package
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install poetry
run: python -m pip install poetry
- name: Build package
run: poetry build
- name: Show result
run: ls -l dist
- name: Install package
run: python -m pip install .
- name: Import package
run: python -c "import flask_paseto_extended; print(flask_paseto_extended.__version__)"