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

Add GitHub action and Docker image for asciidoc-linter #14

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
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]"
}
}
23 changes: 23 additions & 0 deletions .github/workflows/asciidoc-linter-action.yml
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 .
15 changes: 15 additions & 0 deletions Dockerfile
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
Copy link
Contributor

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


# Set the entry point to the linter CLI
ENTRYPOINT ["asciidoc-linter"]
53 changes: 52 additions & 1 deletion README.adoc
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice to have a Docker compose.yml file which creates a tag for the new image so that it can easily be used by other projects as well.

----

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
Expand Down Expand Up @@ -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
4 changes: 3 additions & 1 deletion setup.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"pytest-metadata",
"black",
"flake8",
"pyyaml",
Copy link
Contributor

Choose a reason for hiding this comment

The 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",
Expand All @@ -22,7 +23,7 @@
},
entry_points={
"console_scripts": [
"asciidoc-lint=asciidoc_linter.cli:main",
"asciidoc-linter=asciidoc_linter.cli:main",
],
},
author="Your Name",
Expand All @@ -43,4 +44,5 @@
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.8",
scripts=["asciidoc_linter/cli.py"],
)
3 changes: 3 additions & 0 deletions setup_test_environment.sh
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ python -m pip install --upgrade pip
# Install project with test dependencies
pip install -e ".[test]"

# Install pyyaml
pip install pyyaml

echo "Test environment setup complete. You can now run: python run_tests_html.py OR python -m pytest"
Loading