summaryrefslogtreecommitdiff
path: root/.github/workflows/windows.yml
blob: 3aa471f6d6de81867a557f0844d3e711b484a74a (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
34
name: windows

on:
  pull_request:

  push:
    branches:
      - staging
      - trying
      - parallelize_again

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