Enabled Postgresql Database #127
Workflow file for this run
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
on: | |
pull_request: | |
paths: | |
- "*.md" | |
- "docs/*.md" | |
workflow_dispatch: | |
name: Auto - Documentation Check | |
jobs: | |
SpellCheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Typo file contents check | |
shell: bash | |
run: cat ./.github/_typos.toml | |
# https://github.com/crate-ci/typos | |
- name: Check spelling of markdown files | |
uses: crate-ci/typos@master | |
with: | |
files: ./**/*.md | |
config: ./.github/_typos.toml |