Skip to content

Commit

Permalink
Merge pull request #68 from cloudnativegeo/kyle/glossary
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron authored Oct 11, 2023
2 parents bd7bdc2 + 1e812e1 commit 5e3f274
Show file tree
Hide file tree
Showing 5 changed files with 418 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

# On every pull request, but only on push to main
on:
push:
branches:
- main
pull_request:

jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11

- name: run pre-commit
run: |
python -m pip install pre-commit
pre-commit run --all-files
8 changes: 8 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
repos:
- repo: local
hooks:
- id: glossary-alphabetical
name: glossary-alphabetical
entry: python scripts/glossary_alphabetical.py
language: system
files: 'glossary.qmd'
2 changes: 2 additions & 0 deletions _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ website:
- section: PMTiles
contents:
- pmtiles/intro.qmd
- href: glossary.qmd
text: Glossary
- href: cookbooks/index.qmd
text: Cookbooks
- href: contributing.qmd
Expand Down
Loading

0 comments on commit 5e3f274

Please sign in to comment.