Skip to content

Bump actions/checkout from 3 to 4 #53

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #53

Workflow file for this run

name: windows
on: [push]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
ruby: [ 'mingw', 'mswin', '2.7', '2.6' ]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Build package
run: bundle exec rake build
- name: Install package
run: |
gem install pkg/curses-*.gem
ruby -r curses -e 'puts Curses::VERSION'