From bb9d481ed94cd23d05c6bcbe34b46adea549b6f3 Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Tue, 25 Aug 2020 02:42:30 +0000 Subject: [PATCH 1/3] Fix Gemfile.lock --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 6c44554d..6adcf79b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -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) From a4d5235fb0410e01fcbab7ac73b7e1bd3002e517 Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Tue, 25 Aug 2020 02:40:48 +0000 Subject: [PATCH 2/3] 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*' From 8761111c93d8e32f8ee90918718da78186e3385e Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Tue, 25 Aug 2020 02:47:14 +0000 Subject: [PATCH 3/3] Fix README markdown syntax --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 26c8d709..58053e24 100644 --- a/README.md +++ b/README.md @@ -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).