Sha256: eda184481ba078320ad1d20db1ba2a30e5caaefb9f1ee37aaa9b38d128f586e8

Contents?: true

Size: 485 Bytes

Versions: 3

Compression:

Stored size: 485 Bytes

Contents

name: windows

on: [push]

jobs:
  build:
    runs-on: windows-latest
    strategy:
      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: Set up Bundler
      run: gem install bundler --no-document
    - name: Install dependencies
      run: bundle install
    - name: Run test
      run: bundle exec rake test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
textbringer-1.0.3 .github/workflows/windows.yml
textbringer-1.0.2 .github/workflows/windows.yml
textbringer-1.0.1 .github/workflows/windows.yml