Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor so that tests and checks pass #1

Merged
merged 9 commits into from
Jul 1, 2024
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
46 changes: 23 additions & 23 deletions .cruft.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"template": "https://github.com/fpgmaas/cookiecutter-poetry.git",
"commit": "f448c9c6407c799f6b81b8e310608cb841e98d15",
"checkout": null,
"context": {
"cookiecutter": {
"author": "Mark Andrew Miller",
"email": "[email protected]",
"author_github_handle": "turbomam",
"project_name": "llm-github",
"project_slug": "llm_github",
"project_description": "Tools for extracting knowledge from GitHub issues, PR comments, etc.",
"include_github_actions": "y",
"publish_to": "pypi",
"deptry": "y",
"mkdocs": "y",
"codecov": "y",
"dockerfile": "y",
"devcontainer": "n",
"open_source_license": "MIT license",
"_template": "https://github.com/fpgmaas/cookiecutter-poetry.git"
}
},
"directory": null
"template": "https://github.com/fpgmaas/cookiecutter-poetry.git",
"commit": "f448c9c6407c799f6b81b8e310608cb841e98d15",
"checkout": null,
"context": {
"cookiecutter": {
"author": "Mark Andrew Miller",
"email": "[email protected]",
"author_github_handle": "turbomam",
"project_name": "llm-github",
"project_slug": "llm_github",
"project_description": "Tools for extracting knowledge from GitHub issues, PR comments, etc.",
"include_github_actions": "y",
"publish_to": "pypi",
"deptry": "y",
"mkdocs": "y",
"codecov": "y",
"dockerfile": "y",
"devcontainer": "n",
"open_source_license": "MIT license",
"_template": "https://github.com/fpgmaas/cookiecutter-poetry.git"
}
},
"directory": null
}
8 changes: 4 additions & 4 deletions .github/actions/setup-poetry-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: "setup-poetry-env"
description: "Composite action to setup the Python and poetry environment."

inputs:
python-version:
required: false
description: "The python version to use"
default: "3.11"
python-version:
required: false
description: "The python version to use"
default: "3.11"

runs:
using: "composite"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ["3.8", "3.9", "3.10", "3.11"]
fail-fast: false
steps:
- name: Check out
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/on-release-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
branches: [main]

jobs:

publish:
runs-on: ubuntu-latest
steps:
Expand All @@ -28,7 +27,7 @@ jobs:
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
RELEASE_VERSION: ${{ steps.vars.outputs.tag }}

deploy-docs:
needs: publish
runs-on: ubuntu-latest
Expand All @@ -41,4 +40,3 @@ jobs:

- name: Deploy documentation
run: poetry run mkdocs gh-deploy --force

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.idea/
*.sqlite


###
Expand Down
1 change: 0 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

2 changes: 1 addition & 1 deletion docs/modules.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
::: llm_github.foo
::: llm_github.core
Loading
Loading