forked from wiesnim9/CSSFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added documentation with MkDocs. Documentation contains multiple guides for new users and full autogenerated package reference. - Changed command line interface. Now `cssfinder project` commands no longer auto-detect project as current working directory. - Added JSON report format.
- Loading branch information
Showing
62 changed files
with
4,620 additions
and
2,729 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
name: Build & Deploy Docs | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.action_path }}-${{ github.ref }}-build-n-deploy-docs | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
run-build-n-deploy-docs: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
python-version: ["3.8"] | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
architecture: "x64" | ||
|
||
- name: Install Poetry | ||
run: pip install poetry==1.8.2 | ||
|
||
- name: Install dependencies | ||
run: poetry install --with=docs --no-cache --sync | ||
|
||
- name: Install Mike | ||
run: poetry run pip install mike | ||
|
||
- name: Configure Git | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
- name: Run build & deploy documentation | ||
run: | | ||
poetry run mike deploy --push --update-aliases $(poetry version | awk '{ print $2 }') latest -F mkdocs.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
architecture: "x64" | ||
|
||
- name: Install Poetry 📜 | ||
run: pip install poetry==1.4.0 | ||
run: pip install poetry==1.8.2 | ||
|
||
- name: Install dependencies 🗄️ | ||
run: poetry install --no-cache --sync | ||
|
@@ -44,13 +44,6 @@ jobs: | |
run: | | ||
echo "version=$(poetry version | awk '{ print $2 }')" >> $GITHUB_OUTPUT | ||
- name: Create development 🔨 Tag 🏷️ | ||
id: tag-version | ||
uses: mathieudutour/[email protected] | ||
with: | ||
custom_tag: ${{ steps.project-version.outputs.version }} | ||
github_token: ${{ secrets.REPO_ACCESS_TOKEN }} | ||
|
||
- name: Publish distribution 📦 to Test PyPI | ||
# Executed always | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.