summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-11 10:38:15 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-11 10:38:15 +0900
commitaf200001f844969311e02c3518fe832614b373dd (patch)
tree1055a3790569d682df3a2a0f41a8efcfa03627f9
parent04a32439572cfdb4762b071f5cf83b77390d9cae (diff)
downloadpsych-af200001f844969311e02c3518fe832614b373dd.tar.gz
Give up to Windows env with GitHub Action
-rw-r--r--.github/workflows/windows.yml24
1 files changed, 0 insertions, 24 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
deleted file mode 100644
index 6948922..0000000
--- a/.github/workflows/windows.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-name: windows
-
-on: [push]
-
-jobs:
- build:
- runs-on: windows-latest
- strategy:
- matrix:
- ruby: [ '2.6.x', '2.5.x', '2.4.x' ]
- steps:
- - uses: actions/checkout@master
- - name: Set up Ruby
- uses: actions/setup-ruby@v1
- with:
- version: ${{ matrix.ruby }}
- - name: Set up Bundler
- run: gem install bundler --no-document
- - name: Install dependencies
- run: bundle install
- - name: Build
- run: rake -rdevkit compile
- - name: Run test
- run: rake test