diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..60da7b1 --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,16 @@ +name: docs +on: + push: + branches: + - master + - main +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3.x + - run: pip install mkdocs-material + - run: mkdocs gh-deploy --force \ No newline at end of file diff --git a/.gitignore b/.gitignore index 3a8e9e1..6f62c15 100644 --- a/.gitignore +++ b/.gitignore @@ -91,4 +91,4 @@ target/ .mypy_cache/ # Exclude any virtual environment. -#venv/ \ No newline at end of file +venv/ \ No newline at end of file