Change stop #36
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
# GitHub Action workflow to build and run TurboSearch's tests | |
# | |
name: Build TurboSearch (Test) | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
lint: | |
name: Check syntaxs errors and warnings | |
runs-on: ubuntu-latest | |
if: | |
github.event_name == 'push' || github.event.pull_request.head.repo.full_name != | |
github.repository | |
steps: | |
- name: Checkout TurboSearch | |
uses: actions/checkout@v3 | |
- name: Setup Python 3.8 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install flake8 | |
#- name: Check syntax errors | |
# run: | | |
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
#- name: Check PEP8 warnings | |
# run: | | |
# flake8 . --count --ignore=E1,E2,E3,E501,W291,W293 --exit-zero --max-complexity=65 --max-line-length=127 --statistics | |
build: | |
name: Build | |
needs: lint | |
runs-on: ubuntu-latest | |
if: | |
github.event_name == 'push' || github.event.pull_request.head.repo.full_name != | |
github.repository | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
experimental: [false] | |
include: | |
- python-version: "3.11" | |
experimental: true | |
continue-on-error: ${{ matrix.experimental }} | |
steps: | |
- name: Checkout TurboSearch | |
uses: actions/checkout@v3 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements.txt -r tests/requirements-test.txt | |
- name: Build artifact | |
run: | | |
python setup.py sdist | |
pipx_test: | |
name: pipx test | |
needs: build | |
runs-on: ubuntu-latest | |
if: | |
github.event_name == 'push' || github.event.pull_request.head.repo.full_name != | |
github.repository | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.10", "3.11"] | |
experimental: [false] | |
include: | |
- python-version: "3.12" | |
experimental: true | |
continue-on-error: ${{ matrix.experimental }} | |
steps: | |
- name: Checkout TurboSearch | |
uses: actions/checkout@v3 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python dependencies | |
run: | | |
sudo apt -y install python3-venv pipx | |
- name: Install test | |
run: | | |
pipx install . | |
publish: | |
name: Publish on Test Environment | |
needs: pipx_test | |
runs-on: ubuntu-latest | |
if: | |
github.event_name == 'push' || github.event.pull_request.head.repo.full_name != | |
github.repository | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8"] | |
experimental: [false] | |
continue-on-error: ${{ matrix.experimental }} | |
steps: | |
- name: Checkout TurboSearch | |
uses: actions/checkout@v3 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements.txt -r tests/requirements-test.txt | |
- name: Change Package version | |
run: | | |
oldv=$( grep '__version__' turbosearch/__meta__.py | grep -oE '[0-9\.]+') | |
current=$(date '+%Y%m%d%H%M%S') | |
meta=$(cat turbosearch/__meta__.py | sed "s/__version__.*/__version__ = '"${oldv}"-"${current}"'/") | |
echo "$meta" > turbosearch/__meta__.py | |
- name: Build artifact | |
run: | | |
python setup.py sdist | |
- name: Publish package in Test Environment | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.test_pypi_password }} | |
repository_url: https://test.pypi.org/legacy/ |