.github/workflows/ci.yml in diffend-0.2.38 vs .github/workflows/ci.yml in diffend-0.2.39
- old
+ new
@@ -1,11 +1,14 @@
name: ci
jobs:
specs:
- runs-on: ubuntu-latest
+ needs:
+ - diffend
+ - coditsu
+ runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.0'
@@ -43,9 +46,28 @@
bundle _${{matrix.bundler}}_ install --jobs 4 --retry 3
- name: Run all tests
env:
GITHUB_COVERAGE: ${{matrix.coverage}}
run: bundle _${{matrix.bundler}}_ exec rspec
+
+ diffend:
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - name: Set up Ruby
+ uses: ruby/setup-ruby@v1
+ with:
+ ruby-version: 3.0
+ - name: Install latest bundler
+ run: gem install bundler --no-document
+ - name: Install Diffend plugin
+ run: bundle plugin install diffend
+ - name: Bundle Secure
+ run: bundle secure
coditsu:
runs-on: ubuntu-latest
strategy:
fail-fast: false