feat: introduce ChannelOptions for enhanced channel configuration #984
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
| # This workflow will install Python dependencies, run tests and lint with a variety of Python versions. | |
| # Based upon: | |
| # https://github.com/actions/starter-workflows/blob/main/ci/python-package.yml | |
| # As directed from: | |
| # https://docs.github.com/en/actions/guides/building-and-testing-python#starting-with-the-python-workflow-template | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| check: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: 'recursive' | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Setup poetry | |
| uses: abatilo/actions-poetry@v4 | |
| with: | |
| poetry-version: '1.8.5' | |
| - name: Setup a local virtual environment | |
| run: | | |
| poetry config virtualenvs.create true --local | |
| poetry config virtualenvs.in-project true --local | |
| - uses: actions/cache@v3 | |
| name: Define a cache for the virtual environment based on the dependencies lock file | |
| with: | |
| path: ./.venv | |
| key: venv-${{ hashFiles('poetry.lock') }} | |
| - name: Install dependencies | |
| run: poetry install -E crypto | |
| - name: Generate rest sync code and tests | |
| run: poetry run unasync | |
| - name: Test with pytest | |
| run: poetry run pytest --verbose --tb=short |