-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add linting and testing workflow for charts and webapp #4
Conversation
pyproject.toml
Outdated
@@ -0,0 +1,44 @@ | |||
[project] | |||
name = "titiler" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
name = "titiler" | |
name = "polder" |
COPY webapp/package.json /app | ||
RUN yarn install | ||
COPY webapp/. /app | ||
CMD ["yarn", "run", "start"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CMD ["yarn", "run", "start"] | |
CMD ["yarn", "run", "start"] | |
context: . | ||
file: dockerfiles/Dockerfile | ||
push: false | ||
tags: "polder:dev" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tags: "polder:dev" | |
tags: "polder:dev" | |
.github/check_charts.yaml
Outdated
|
||
- name: Run chart-testing (install) | ||
run: ct install --chart-dirs deployment/k8s | ||
if: steps.list-changed.outputs.changed == 'true' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if: steps.list-changed.outputs.changed == 'true' | |
if: steps.list-changed.outputs.changed == 'true' | |
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Programming Language :: Python :: 3.8", | |
"Programming Language :: Python :: 3.9", | |
"Programming Language :: Python :: 3.10", | |
"Programming Language :: Python :: 3.11", |
name = "titiler" | ||
description = "A simple web service to create maps and viewer using eoAPI" | ||
readme = "README.md" | ||
requires-python = ">=3.8" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
requires-python = ">=3.8" | |
requires-python = ">=3.12" |
.github/check_charts.yaml
Outdated
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.7 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
python-version: 3.7 | |
python-version: 3.12 |
No description provided.