add an API to retrieve an enum's name property
#173
Workflow file for this run
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
| # CI stages to execute against Pull Requests | |
| name: Pylero - CI | |
| on: | |
| pull_request: | |
| types: ["opened", "synchronize", "reopened"] | |
| jobs: | |
| codechecks: | |
| name: Code Quality | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - name: Checkout Pylero | |
| uses: actions/checkout@v4 | |
| - name: Set Up Python-${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Dependencies | |
| run: | | |
| pip install -U pip | |
| pip install -U -r requirements.txt | |
| pip install . | |
| - name: Pre Commit Checks | |
| uses: pre-commit/action@v3.0.1 |