summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMSP-Greg <MSP-Greg@users.noreply.github.com>2019-10-22 20:32:35 -0500
committerMSP-Greg <MSP-Greg@users.noreply.github.com>2019-10-22 20:46:38 -0500
commita173c8fa16acb1210178bf8b057ccc54ddfff361 (patch)
treeeeddd97853215c94a5d4b81a7394f4bd68d216e8
parent0910ae5575786d57783eafd4d03ebc0d077cd2ed (diff)
downloadpsych-a173c8fa16acb1210178bf8b057ccc54ddfff361.tar.gz
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