fix display name (#29) #118
This file contains hidden or 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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Python Current | |
on: | |
push: | |
branches: | |
- main | |
- "branch-*" | |
# branches used to test the workflow | |
# - "workflow_test_*" | |
pull_request: | |
branches: | |
- main | |
- "branch-*" | |
jobs: | |
run-core-tests: | |
name: core-tests-${{ matrix.python-version }}-${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- "ubuntu-22.04" | |
python-version: | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install core Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade tox setuptools flake8 pytest mypy | |
pip freeze | |
- name: Test with tox/pytest | |
# tox is used to run pytest | |
run: | | |
tox -e py -- ${{ matrix.pytest-args }} |