Skip to content

chore(deps): bump aiohttp from 3.9.0 to 3.9.2 #133

chore(deps): bump aiohttp from 3.9.0 to 3.9.2

chore(deps): bump aiohttp from 3.9.0 to 3.9.2 #133

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [main]
jobs:
test:
name: ${{ matrix.python }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest]
python: ["3.8", "3.9", "3.10"]
steps:
- name: Checkout the repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install "poetry==1.3.1"
- name: Install test dependencies with poetry
env:
# https://github.com/python-poetry/poetry/issues/5250#issuecomment-1067193647
PYTHON_KEYRING_BACKEND: "keyring.backends.fail.Keyring"
run: |
poetry install --no-interaction --no-ansi --only test
- name: Run tests with nox
run: |
poetry run nox --python ${{ matrix.python }}
release:
runs-on: ubuntu-latest
needs: test
steps:
- name: Check out the repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Setup git
run: |
git config user.name release-transformer-embeddings
git config user.email [email protected]
- name: Install Poetry, dependencies, release
if: ${{ github.ref == 'refs/heads/main' }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --no-interaction --no-ansi --only release
poetry run semantic-release publish