summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@ruby-lang.org>2019-11-27 17:06:25 -0800
committerGitHub <noreply@github.com>2019-11-27 17:06:25 -0800
commit2a06e8360e28e99c26f1645f476b76677ecebd55 (patch)
tree324e7939ccb173d34aa80b857339398d21525e89
parent4ef663e36302f77059e12e507fb4178c5c2429f6 (diff)
parenta173c8fa16acb1210178bf8b057ccc54ddfff361 (diff)
downloadpsych-2a06e8360e28e99c26f1645f476b76677ecebd55.tar.gz
Merge pull request #421 from MSP-Greg/actions-windows
Actions CI - Create 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