Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change to use mutant.sh #154

Merged
merged 3 commits into from
Aug 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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*'