summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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