Skip to content

Bump contributor-assistant/github-action from 2.5.1 to 2.5.2 #45

Bump contributor-assistant/github-action from 2.5.1 to 2.5.2

Bump contributor-assistant/github-action from 2.5.1 to 2.5.2 #45

Workflow file for this run

---
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()