From 84be0a442825f50d49c442fb4f3530e71ea43642 Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Tue, 25 Aug 2020 02:40:48 +0000 Subject: [PATCH] Change to use mutant.sh --- .github/workflows/ci.yml | 8 +------- mutant.sh | 8 ++++++++ 2 files changed, 9 insertions(+), 7 deletions(-) create mode 100755 mutant.sh diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52f03c57..5724f11b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,13 +65,7 @@ jobs: - run: | gem install bundler bundle install - - run: | - bundle exec mutant \ - --since HEAD~1 \ - --zombie \ - --ignore-subject 'Unparser::CLI*' \ - --ignore-subject 'Unparser::Validation.from_string' \ - -- 'Unparser*' + - run: ./mutant.sh ruby-rubocop: name: Rubocop runs-on: ${{ matrix.os }} diff --git a/mutant.sh b/mutant.sh new file mode 100755 index 00000000..6014efbf --- /dev/null +++ b/mutant.sh @@ -0,0 +1,8 @@ +#/usr/bin/bash -ex + +bundle exec mutant \ + --since HEAD~1 \ + --zombie \ + --ignore-subject 'Unparser::CLI*' \ + --ignore-subject 'Unparser::Validation.from_string' \ + -- 'Unparser*'