Skip to content

Commit ef1cbd6

Browse files
author
Shriyansh Agnihotri
committed
Merge branch 'main' into dev
2 parents 1f73fc4 + 7a2d08d commit ef1cbd6

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/main-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
curl -sSL ${{ env.POETRY_URL }} | python - --version ${{ env.POETRY_VERSION }}
4646
echo "$HOME/.local/bin" >> $GITHUB_PATH
4747
- name: Install project
48-
run: make install
48+
run: make install-extra
4949
- name: Run linter
5050
run: make lint
5151
# - name: Run tests

.github/workflows/main-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
curl -sSL ${{ env.POETRY_URL }} | python - --version ${{ env.POETRY_VERSION }}
4242
echo "$HOME/.local/bin" >> $GITHUB_PATH
4343
- name: Install project
44-
run: make install
44+
run: make install-extra
4545
- name: Run linter
4646
run: make lint
4747
- name: Run tests

.github/workflows/non-main-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ jobs:
5353
curl -sSL ${{ env.POETRY_URL }} | python - --version ${{ env.POETRY_VERSION }}
5454
echo "$HOME/.local/bin" >> $GITHUB_PATH
5555
- name: Install project
56-
run: make install
56+
run: make install-extra
5757
- name: Run linter
5858
run: make lint

.github/workflows/non-main-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
curl -sSL ${{ env.POETRY_URL }} | python - --version ${{ env.POETRY_VERSION }}
5050
echo "$HOME/.local/bin" >> $GITHUB_PATH
5151
- name: Install project
52-
run: make install
52+
run: make install-extra
5353
- name: Run linter
5454
run: make lint
5555
- name: Run tests

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
curl -sSL ${{ env.POETRY_URL }} | python - --version ${{ env.POETRY_VERSION }}
5959
echo "$HOME/.local/bin" >> $GITHUB_PATH
6060
- name: Install project
61-
run: make install
61+
run: make install-extra
6262
- name: Build and publish to PyPI
6363
env:
6464
TWINE_USERNAME: __token__

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "testzeus-hercules"
3-
version = "0.0.8"
3+
version = "0.0.9"
44
description = "Hercules: The World's First Open-Source AI Agent for End-to-End Testing"
55
authors = ["Shriyansh Agnihotri <shriyansh@testzeus.com>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)