Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #68 from PrefectHQ/add-analytics
Browse files Browse the repository at this point in the history
Add analytics
  • Loading branch information
ahuang11 authored Feb 7, 2023
2 parents 57e03b9 + a9fdb7f commit c531d4b
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 4 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,19 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Build docs
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: pip
cache-dependency-path: requirements*.txt

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade --upgrade-strategy eager -e .[dev]
python -m pip install --upgrade --upgrade-strategy eager -e ".[dev]"
mkdocs build
- name: Publish docs
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pycqa/isort
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort
language_version: python3
Expand Down
24 changes: 23 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,26 @@ watch:
nav:
- Home: index.md
- Task Runners: task_runners.md

extra:
social:
- icon: fontawesome/brands/slack
link: https://www.prefect.io/slack/
- icon: fontawesome/brands/discourse
link: https://discourse.prefect.io/
- icon: fontawesome/brands/youtube
link: https://www.youtube.com/c/PrefectIO/videos
- icon: fontawesome/regular/newspaper
link: https://prefect.io/guide/
- icon: fontawesome/brands/twitter
link: https://twitter.com/PrefectIO
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/prefect/
- icon: fontawesome/brands/github
link: https://github.com/PrefectHQ/prefect
- icon: fontawesome/brands/docker
link: https://hub.docker.com/r/prefecthq/prefect/
- icon: fontawesome/brands/python
link: https://pypi.org/project/prefect/
analytics:
provider: google
property: G-8CSMBCQDKN

0 comments on commit c531d4b

Please sign in to comment.