summaryrefslogtreecommitdiff
path: root/.github/workflows/windows.yml
blob: 00e0fc03851761385ff455b80b9a21993e520b83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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:parallel_deps
        shell: bash

      - name: Run specs
        run: bin/parallel_rspec spec
        shell: bash