summaryrefslogtreecommitdiff
path: root/.github/workflows/windows.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/windows.yml')
-rw-r--r--.github/workflows/windows.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
new file mode 100644
index 0000000..44825bf
--- /dev/null
+++ b/.github/workflows/windows.yml
@@ -0,0 +1,27 @@
+name: windows
+
+on: [push, pull_request]
+
+jobs:
+ build:
+ runs-on: windows-latest
+ strategy:
+ fail-fast: false
+ 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:
+ ruby-version: ${{ matrix.ruby }}
+ - name: Update MSYS2
+ uses: MSP-Greg/msys2-action@master
+ with:
+ base: update
+ - name: Install dependencies
+ run: |
+ call gem update --system --no-document --conservative
+ bundle install
+ - name: Run test
+ run: rake