-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from watermarkhu/development
Development
- Loading branch information
Showing
36 changed files
with
377 additions
and
1,056 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,45 @@ | ||
name: documentation | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'src/**.py' | ||
- 'docs/**' | ||
- '.github/workflows/docs.yml' | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
|
||
- name: Install poetry | ||
uses: abatilo/actions-poetry@v3 | ||
|
||
- name: Install dependencies | ||
run: | | ||
poetry install --without test,dev | ||
- name: Sphinx build | ||
run: | | ||
source $(poetry env info --path)/bin/activate | ||
cd docs && make html | ||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | ||
with: | ||
publish_branch: gh-pages | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: docs/_build/html | ||
force_orphan: true |
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 |
---|---|---|
@@ -1,23 +1,23 @@ | ||
Install the repository after cloning with [poetry](https://python-poetry.org/), and setup [pre-commit](https://pre-commit.com/) such that code is linted and formatted with [Ruff](https://docs.astral.sh/ruff/). | ||
Install the repository after cloning with [poetry](https://python-poetry.org/), and setup [pre-commit](https://pre-commit.com/) such that code is linted and formatted with [Ruff](https://docs.astral.sh/ruff/) and checked with [mypy](https://mypy-lang.org/). | ||
|
||
```bash | ||
> pip install poetry | ||
> cd textmate-grammar-python | ||
> poetry install | ||
> pre-commit install | ||
pip install poetry | ||
cd textmate-grammar-python | ||
poetry install | ||
pre-commit install | ||
``` | ||
|
||
Run unit tests | ||
```bash | ||
> tox run | ||
tox run | ||
``` | ||
|
||
Run static type checker | ||
```bash | ||
> tox run -e mypy | ||
tox run -e mypy | ||
``` | ||
|
||
Run regression testing against vscode-textmate (will install npm and required packages) | ||
Run regression testing against vscode-textmate (will install npm and required packages). | ||
```bash | ||
> tox run -e regression | ||
tox run -e regression | ||
``` |
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 was deleted.
Oops, something went wrong.
147 changes: 0 additions & 147 deletions
147
docs/apidocs/textmate_grammar/textmate_grammar.cache.rst
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.