diff --git a/.github/workflows/.keep b/.github/workflows/.keep new file mode 100644 index 00000000..e69de29b diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml deleted file mode 100644 index c4e54453..00000000 --- a/.github/workflows/ruby.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Ruby - -on: [push] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v1 - - name: Set up Ruby 2.6 - uses: actions/setup-ruby@v1 - with: - ruby-version: 2.6.x - - name: Build and test - run: | - gem install bundler -v 1.17.3 - git submodule init - git submodule update - bundle install - bundle exec rubocop - bundle exec rake