Skip to content

Commit

Permalink
chore: bump epam/ai-dial-ci from 1.10.2 to 1.11.0 (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Jan 16, 2025
1 parent b48768a commit 354085b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-title-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ on:

jobs:
pr-title-check:
uses: epam/ai-dial-ci/.github/workflows/pr-title-check.yml@1.10.2
uses: epam/ai-dial-ci/.github/workflows/pr-title-check.yml@1.11.0
secrets:
ACTIONS_BOT_TOKEN: ${{ secrets.ACTIONS_BOT_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
run_tests:
uses: epam/ai-dial-ci/.github/workflows/python_package_pr.yml@1.10.2
uses: epam/ai-dial-ci/.github/workflows/python_package_pr.yml@1.11.0
secrets: inherit
with:
python_version: 3.8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
release:
uses: epam/ai-dial-ci/.github/workflows/python_package_release.yml@1.10.2
uses: epam/ai-dial-ci/.github/workflows/python_package_release.yml@1.11.0
secrets: inherit
with:
python_version: 3.8
Expand Down
22 changes: 11 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
VENV ?= .venv
POETRY ?= ${VENV}/bin/poetry
VENV_DIR ?= .venv
POETRY ?= $(VENV_DIR)/bin/poetry
POETRY_VERSION ?= 1.8.5

all: build

init_env:
python -m venv ${VENV}
${VENV}/bin/pip install poetry==${POETRY_VERSION} --quiet
python -m venv $(VENV_DIR)
$(VENV_DIR)/bin/pip install poetry==$(POETRY_VERSION) --quiet

install: init_env
${POETRY} install --all-extras
$(POETRY) install --all-extras

build: install
${POETRY} build
$(POETRY) build

clean:
rm -rf $$(${POETRY} env info --path)
rm -rf $$($(POETRY) env info --path)
rm -rf .nox
rm -rf .pytest_cache
rm -rf dist
find . -type d -name __pycache__ | xargs rm -r

publish: build
${POETRY} publish -u __token__ -p ${PYPI_TOKEN} --skip-existing
$(POETRY) publish -u __token__ -p $(PYPI_TOKEN) --skip-existing

lint: install
${POETRY} run nox -s lint
$(POETRY) run nox -s lint

format: install
${POETRY} run nox -s format
$(POETRY) run nox -s format

test: install
${POETRY} run nox -s test $(if $(PYTHON),--python=$(PYTHON),)
$(POETRY) run nox -s test $(if $(PYTHON),--python=$(PYTHON),)

benchmark: install
python -m benchmark.benchmark_merge_chunks
Expand Down

0 comments on commit 354085b

Please sign in to comment.