Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
VENV ?= .venv
POETRY ?= $(VENV)/bin/poetry
VENV_DIR ?= .venv
POETRY ?= $(VENV_DIR)/bin/poetry
POETRY_VERSION ?= 1.8.5

.PHONY: all init_env install clean lint format test spell_check

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
Expand Down Expand Up @@ -36,7 +36,7 @@ coverage: install
$(POETRY) run nox -s coverage

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

help:
@echo '===================='
Expand Down