Skip to content

Commit

Permalink
Remove Unit test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
damacus committed Nov 21, 2023
1 parent f85dc88 commit 3bcb293
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,18 @@ jobs:
- uses: r7kamura/rubocop-problem-matchers-action@v1
- run: bundle exec chefstyle

unit:
name: Unit test on Ruby ${{ matrix.ruby }}
needs: [yamllint, chefstyle]
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.1"]
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake spec
# Normally we would enable this but this is a stub gem without any code

Check warning on line 35 in .github/workflows/ci.yaml

View workflow job for this annotation

GitHub Actions / yamllint

35:3 [comments-indentation] comment not indented like content
# unit:
# name: Unit test on Ruby ${{ matrix.ruby }}
# needs: [yamllint, chefstyle]
# runs-on: ubuntu-latest
# strategy:
# matrix:
# ruby: ["3.1"]
# steps:
# - uses: actions/checkout@v4
# - uses: ruby/setup-ruby@v1
# with:
# ruby-version: ${{ matrix.ruby }}
# bundler-cache: true
# - run: bundle exec rake spec

0 comments on commit 3bcb293

Please sign in to comment.