Skip to content

Commit

Permalink
Merge branch 'main' into return-output
Browse files Browse the repository at this point in the history
  • Loading branch information
hemanialaparthi authored Dec 5, 2024
2 parents 5829005 + 069b45c commit 1116043
Show file tree
Hide file tree
Showing 9 changed files with 124 additions and 18,042 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Release workflow

name: Create Release

# Use more columns for terminal output
env:
COLUMNS: 120
PYTHONIOENCODING: utf8

# trigger the release of the
# execexam package to GitHub
# with any tag starting with 'v'
on:
push:
tags:
- 'v*'

jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Create Release with Auto-Generated Notes
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref_name }}
release_name: "${{ github.ref_name }}"
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32 changes: 32 additions & 0 deletions .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Test Release workflow

name: Create Test Release

# Use more columns for terminal output
env:
COLUMNS: 120
PYTHONIOENCODING: utf8

# trigger the test release of the
# execexam package to GitHub
# with any tag starting with 'r'
on:
push:
tags:
- 't*'

jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Create Release with Auto-Generated Notes
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref_name }}
release_name: "${{ github.ref_name }}"
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ htmlcov/
.cache
nosetests.xml
coverage.xml
coverage.json
*,cover
.hypothesis/
*.mo
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ of [LiteLLM](https://docs.litellm.ai/docs/providers):
## 🔧 Requirements

- Python 3.12
- Chasten leverages numerous Python packages, including notable ones such as:
- Execexam leverages numerous Python packages, including notable ones such as:
- [Rich](https://github.com/Textualize/rich): Full-featured formatting and display of text in the terminal
- [Typer](https://github.com/tiangolo/typer): Easy-to-implement and fun-to-use command-line interfaces
- The developers of Chasten use [Poetry](https://github.com/python-poetry/poetry) for packaging and dependency management
- The developers of Execexam use [Poetry](https://github.com/python-poetry/poetry) for packaging and dependency management

## 🔽 Installation

Expand Down
Loading

0 comments on commit 1116043

Please sign in to comment.