Skip to content

CHEF-25203: Fix chef exec and env command not working in Windows #373

CHEF-25203: Fix chef exec and env command not working in Windows

CHEF-25203: Fix chef exec and env command not working in Windows #373

Workflow file for this run

# This is a basic workflow to help you get started with Action
name: CI
# Controls when the workflow will run
on:
push:
branches: main
pull_request:
branches: main
permissions:
pull-requests: write
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
coverage-test:
name: Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up ruby 3.4
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4
bundler-cache: true
- name: run specs
run: bundle exec rake spec --trace
- name: Simplecov Report
uses: aki77/simplecov-report-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
failedThreshold: 90
resultPath: coverage/.last_run.json