Extra loop join generate command #498
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- master | |
- '[0-9].[0-9]+' # matches to backport branches, e.g. 3.6 | |
tags: [ 'v*' ] | |
pull_request: | |
branches: | |
- master | |
- '[0-9].[0-9]+' | |
jobs: | |
lint: | |
name: Linter | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Cache PyPI | |
uses: actions/cache@v2 | |
with: | |
key: pip-lint-${{ hashFiles('requirements-dev.txt') }} | |
path: ~/.cache/pip | |
restore-keys: | | |
pip-lint- | |
- name: Install system dependencies | |
run: sudo apt-get install -y libmemcached-dev | |
- name: Install python dependencies | |
uses: py-actions/py-dependency-install@v2 | |
with: | |
path: requirements-dev.txt | |
- name: Mypy | |
run: | | |
mypy | |
- name: Flake8 | |
run: | | |
flake8 | |
- name: Prepare twine checker | |
run: | | |
pip install -U twine wheel | |
python setup.py sdist bdist_wheel | |
- name: Run twine checker | |
run: | | |
twine check dist/* | |
test: | |
name: Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install system dependencies | |
run: sudo apt-get install -y libmemcached-dev | |
- name: Install python dependencies | |
run: | | |
pip install --upgrade pip | |
pip install -U setuptools | |
pip install -r requirements.txt | |
pip install codecov | |
- name: Run memcached service | |
uses: jkeys089/actions-memcached@master | |
- name: Run tests | |
run: pytest | |
- name: Upload coverage | |
uses: codecov/codecov-action@v2 | |
with: | |
files: ./coverage.xml | |
flags: unit | |
check: # This job does nothing and is only used for the branch protection | |
if: always() | |
needs: [lint, test] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Decide whether the needed jobs succeeded or failed | |
uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} | |
deploy: | |
name: Deploy | |
environment: release | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
needs: [check] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2.4.0 | |
- name: Update pip, wheel, setuptools, build, twine | |
run: | | |
python -m pip install -U pip wheel setuptools build twine | |
- name: Build dists | |
run: | | |
python -m build | |
- name: Make Release | |
uses: aio-libs/create-release@v1.3.3 | |
with: | |
changes_file: CHANGES.rst | |
name: aiomcache | |
version_file: aiomcache/__init__.py | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
pypi_token: ${{ secrets.PYPI_API_TOKEN }} | |
dist_dir: dist | |
fix_issue_regex: "`#(\\d+) <https://github.com/aio-libs/aiomcache/issues/\\1>`" | |
fix_issue_repl: "(#\\1)" |