chore(deps): bump uvloop from 0.20.0 to 0.21.0 in /examples #841
This file contains 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: main | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
env: | |
TESTCONTAINER_DOCKER_NETWORK: tomodachi-testcontainers | |
DOCKER_BUILDKIT: 1 | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: ['3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up Poetry cache for Python dependencies | |
uses: actions/cache@v4 | |
if: startsWith(runner.os, 'Linux') | |
with: | |
path: ~/.cache/pypoetry | |
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} | |
restore-keys: ${{ runner.os }}-poetry- | |
- name: Install Poetry | |
run: | | |
curl -sSL https://install.python-poetry.org | POETRY_HOME="$HOME/.poetry" python - --yes | |
echo "$HOME/.poetry/bin" >> $GITHUB_PATH | |
- name: Test Poetry installation | |
run: poetry --version | |
- name: Install dependencies - production | |
run: | | |
poetry install --no-interaction | |
poetry show --tree | |
- name: Test package imports | |
run: | | |
poetry run python -c "import tomodachi_testcontainers" | |
poetry run python -c "import tomodachi_testcontainers.clients" | |
poetry run python -c "import tomodachi_testcontainers.containers" | |
poetry run python -c "import tomodachi_testcontainers.fixtures" | |
poetry run python -c "import tomodachi_testcontainers.assertions" | |
poetry run python -c "import tomodachi_testcontainers.async_probes" | |
poetry run python -c "import tomodachi_testcontainers.utils" | |
- name: Install dependencies - dev and extas | |
run: | | |
poetry install --no-interaction --all-extras --with dev | |
poetry show --tree | |
- name: Test Poetry build step | |
run: poetry build | |
- name: Run commit hooks | |
run: SKIP=test poetry run make hooks | |
- name: Create Docker network for running Testcontianers | |
run: docker network create ${{ env.TESTCONTAINER_DOCKER_NETWORK }} | |
- name: Run tests | |
run: poetry run make test-ci | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |