summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-01-01 21:39:16 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2020-01-04 22:17:49 +0100
commit9291a99f9a16e1604e8a9e2990f3bdc3f920e451 (patch)
tree5bcaf1e6dca6a662206d1cfe475ee6249df2ffca /.github
parent53725128cf6559d571a07969c9cdbc36bdea76f0 (diff)
downloadbundler-9291a99f9a16e1604e8a9e2990f3bdc3f920e451.tar.gz
Migrate Windows CI to Github actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
new file mode 100644
index 0000000000..f1538cff97
--- /dev/null
+++ b/.github/workflows/windows.yml
@@ -0,0 +1,34 @@
+name: windows
+
+on:
+ pull_request:
+
+ push:
+ branches:
+ - staging
+ - trying
+
+jobs:
+ windows:
+ runs-on: windows-latest
+
+ strategy:
+ matrix:
+ ruby: [ '2.4.x', '2.5.x', '2.6.x' ]
+
+ steps:
+ - uses: actions/checkout@v1
+
+ - name: Setup ruby
+ uses: actions/setup-ruby@v1
+ with:
+ ruby-version: ${{ matrix.ruby }}
+
+ - name: Install dependencies
+ run: bin/rake spec:deps
+ shell: bash
+
+ - name: Run specs
+ run: bin/rspec
+ shell: bash
+ continue-on-error: true