Make async functions mappable #135
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
| name: CI | |
| on: | |
| push: | |
| branches: "*" | |
| pull_request: | |
| branches: master | |
| workflow_dispatch: | |
| # Cancel redundant in-progress workflow runs. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: ${{ matrix.CONDA_ENV }}-pytest | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| CONDA_ENV: [py39, py310, py311, py312, py313, py314] | |
| # env: | |
| # STREAMZ_LAUNCH_KAFKA: true | |
| steps: | |
| - name: APT | |
| run: sudo apt-get install liblzo2-dev libsnappy-dev | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup Miniconda | |
| uses: conda-incubator/setup-miniconda@v2 | |
| with: | |
| auto-update-conda: true | |
| auto-activate-base: false | |
| activate-environment: test_env | |
| environment-file: ci/environment-${{ matrix.CONDA_ENV }}.yml | |
| - name: pip-install | |
| shell: bash -l {0} | |
| run: | | |
| pip install -e . --no-deps | |
| - name: Run Tests | |
| shell: bash -l {0} | |
| run: | | |
| pytest --verbose --cov=streamz | |
| - name: coveralls | |
| shell: bash -l {0} | |
| if: ${{ matrix.os == 'ubuntu-latest' && matrix.CONDA_ENV == 'py312' }} | |
| run: coveralls | |
| lint: | |
| name: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| - name: pip-install | |
| shell: bash -l {0} | |
| run: | | |
| pip install flake8 | |
| - name: Lint | |
| shell: bash -l {0} | |
| run: | | |
| flake8 streamz |