-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
159c03f
commit 433de31
Showing
1 changed file
with
6 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,17 +12,15 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Setup Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby }} | ||
- name: Install dependencies | ||
run: bundle install | ||
# - name: Run rspec | ||
# run: ./scripts/run_chefspec | ||
- name: Run rubocop | ||
run: ./scripts/run_rubocop .rubocop.yml | ||
- name: Run rspec | ||
run: ./scripts/run_chefspec | ||
- name: Run cookstyle | ||
run: ./scripts/run_cookstyle | ||
kitchen: | ||
|
@@ -36,11 +34,11 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
path: boxcutter-chef-cookbooks | ||
- name: Checkout chef-cookbooks repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: boxcutter/chef-cookbooks | ||
path: chef-cookbooks | ||
|
@@ -61,6 +59,6 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Run Shellcheck | ||
uses: ludeeus/[email protected] |