Updates to README, templates, and workflows #2
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] | |
jobs: | |
vale: | |
name: Style checker | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
shell: bash | |
working-directory: . | |
steps: | |
- name: Checkout repo to runner | |
uses: actions/checkout@v3 | |
- name: Install styles | |
uses: canonical/praecepta@main | |
- name: Run Vale tests | |
uses: errata-ai/vale-action@reviewdog | |
with: | |
files: . | |
fail_on_error: false |