diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c15606df..e62ec96c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,15 +1,13 @@ name: CI -on: - push: - branches: [ main ] - pull_request: +on: [push, pull_request] jobs: test: strategy: fail-fast: false matrix: ruby: ['2.6', '2.7', '3.0', '3.1', '3.2'] - runs-on: ubuntu-latest + os: ['ubuntu-latest', 'windows-latest'] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1