Skip to content

Commit

Permalink
Merge pull request #154 from mbj/refactor/to-mutant.sh
Browse files Browse the repository at this point in the history
Change to use mutant.sh
  • Loading branch information
mbj authored Aug 25, 2020
2 parents 90c7c79 + 8761111 commit 242280f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
unparser (0.4.7)
unparser (0.4.8)
abstract_type (~> 0.0.7)
adamantium (~> 0.2.0)
anima (~> 0.3.1)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
unparser
========

[![CI](https://github.com/mbj/unparser/workflows/CI/badge.svg)
![CI](https://github.com/mbj/unparser/workflows/CI/badge.svg)
[![Gem Version](https://img.shields.io/gem/v/unparser.svg)](https://rubygems.org/gems/unparser)

Generate equivalent source for ASTs from whitequarks [parser](https://github.com/whitequark/parser).
Expand Down
8 changes: 8 additions & 0 deletions mutant.sh
Original file line number Diff line number Diff line change
@@ -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*'

0 comments on commit 242280f

Please sign in to comment.