summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby McDonald <BobbyMcWho@users.noreply.github.com>2019-11-16 23:10:49 -0500
committerGitHub <noreply@github.com>2019-11-16 23:10:49 -0500
commitd1cad54a6e3dd3aae3633a4a98fd19cbc4a53fc4 (patch)
treeb7b1153753f5e2c82b1a32338ccb903ca1b46b60
parent289d7f1e2b3388bdd64e529918d9568fa6c94270 (diff)
downloadhashie-d1cad54a6e3dd3aae3633a4a98fd19cbc4a53fc4.tar.gz
Remove github actions
This is causing too much noise while I experiment, I'll move it to my fork of hashie and test there.
-rw-r--r--.github/workflows/test.yml31
1 files changed, 0 insertions, 31 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
deleted file mode 100644
index 6985167..0000000
--- a/.github/workflows/test.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-name: Test
-
-on: [push, pull_request]
-
-jobs:
- build:
-
- runs-on: ubuntu-latest
-
- strategy:
- matrix:
- ruby-version: [ '2.1.10', '2.2.9', '2.3.8', '2.4.5', '2.5.3', '2.6.3']
- steps:
- - uses: actions/checkout@v1
- - uses: actions/cache@preview
- id: cache
- with:
- path: ~/local/rubies
- key: ruby-${{ matrix.ruby-version }}
- - uses: clupprich/ruby-build-action@master
- id: ruby
- with:
- ruby-version: ${{ matrix.ruby-version }}
- cache-available: ${{ steps.cache.outputs.cache-hit == 'true' }}
- - name: Build and test with Rake
- env:
- CI: 'true'
- run: |
- gem install bundler
- bundle install --jobs 4 --retry 3
- bundle exec rake