-
Notifications
You must be signed in to change notification settings - Fork 1
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 GitHub action and Docker image for asciidoc-linter #14
base: main
Are you sure you want to change the base?
Changes from all commits
13bbf0c
ce7c0f8
745a9aa
93cd261
cb02dc1
b7f69b2
2327ecb
aeda31d
19d2373
b35e2ee
f114f42
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"tasks": { | ||
"test": "./setup_test_environment.sh && python -m pytest" | ||
"test": "./setup_test_environment.sh && python -m pytest", | ||
"build": "pip install .[test,docs]" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: AsciiDoc Linter Action | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Build Docker image | ||
run: docker build -t asciidoc-linter . | ||
|
||
- name: Run AsciiDoc Linter | ||
run: docker run --rm asciidoc-linter . |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Use Python 3.9 as the base image | ||
FROM python:3.9-slim | ||
|
||
# Set the working directory | ||
WORKDIR /app | ||
|
||
# Copy the project files into the Docker image | ||
COPY . /app | ||
|
||
# Install the project dependencies | ||
RUN pip install --no-cache-dir -e . | ||
RUN pip install pyyaml | ||
|
||
# Set the entry point to the linter CLI | ||
ENTRYPOINT ["asciidoc-linter"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -140,6 +140,57 @@ WARNING: Missing alt text for image: diagram.png (line 80) | |
image::diagram.png[] | ||
---- | ||
|
||
== Using AsciiDoc Linter as a GitHub Action | ||
|
||
You can use the AsciiDoc Linter as a GitHub Action to automatically lint your AsciiDoc files on every push or pull request. To do this, create a new workflow file in your repository (e.g., `.github/workflows/asciidoc-linter.yml`) with the following content: | ||
|
||
[source,yaml] | ||
---- | ||
name: AsciiDoc Linter | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Build Docker image | ||
run: docker build -t asciidoc-linter . | ||
|
||
- name: Run AsciiDoc Linter | ||
run: docker run --rm asciidoc-linter | ||
---- | ||
|
||
== Using AsciiDoc Linter with Docker | ||
|
||
You can also use the AsciiDoc Linter as a Docker image to avoid installing Python and dependencies on your local machine. To do this, follow these steps: | ||
|
||
1. Build the Docker image: | ||
|
||
[source,bash] | ||
---- | ||
docker build -t asciidoc-linter . | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would be nice to have a Docker |
||
---- | ||
|
||
2. Run the AsciiDoc Linter using the Docker image: | ||
|
||
[source,bash] | ||
---- | ||
docker run --rm -v $(pwd):/app asciidoc-linter document.adoc | ||
---- | ||
|
||
Replace `document.adoc` with the path to the AsciiDoc file you want to lint. The `-v $(pwd):/app` option mounts the current directory to the `/app` directory inside the Docker container, allowing the linter to access your files. | ||
|
||
== Development | ||
|
||
=== Current Status | ||
|
@@ -255,4 +306,4 @@ This project is licensed under the MIT License - see the LICENSE file for detail | |
|
||
* Project Homepage: https://github.com/docToolchain/asciidoc-linter | ||
* Issue Tracker: https://github.com/docToolchain/asciidoc-linter/issues | ||
* docToolchain Homepage: https://doctoolchain.org | ||
* docToolchain Homepage: https://doctoolchain.org |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
"pytest-metadata", | ||
"black", | ||
"flake8", | ||
"pyyaml", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is there a pyproject.toml and a setup.py which overlap? |
||
], | ||
"docs": [ | ||
"sphinx", | ||
|
@@ -22,7 +23,7 @@ | |
}, | ||
entry_points={ | ||
"console_scripts": [ | ||
"asciidoc-lint=asciidoc_linter.cli:main", | ||
"asciidoc-linter=asciidoc_linter.cli:main", | ||
], | ||
}, | ||
author="Your Name", | ||
|
@@ -43,4 +44,5 @@ | |
"License :: OSI Approved :: MIT License", | ||
], | ||
python_requires=">=3.8", | ||
scripts=["asciidoc_linter/cli.py"], | ||
) |
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.
Runtime dependencies should be part of pyproject.toml to satisfy arbitrary installations (not only Docker), cf. #15