Update spellcheck config #33
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
--- | |
name: Unit Testing | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
rspec: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install Chef | |
uses: actionshub/[email protected] | |
- name: Run RSpec | |
run: chef exec rspec -f j -o tmp/rspec_results.json -f p | |
env: | |
CHEF_LICENSE: accept-no-persist | |
- name: RSpec Report | |
uses: SonicGarden/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
json-path: tmp/rspec_results.json | |
if: always() |