Skip to content

chore: use main for running ci #6

chore: use main for running ci

chore: use main for running ci #6

Workflow file for this run

---
name: ci
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
windows:
name: ${{ matrix.os }} ruby ${{ matrix.ruby }}
strategy:
fail-fast: false
matrix:
ruby: [2.7, 3.3, head, mingw, mswin, ucrt]
os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake compile
- run: bundle exec rake test
unix:
name: ${{ matrix.os }} ruby ${{ matrix.ruby }}
strategy:
fail-fast: false
matrix:
ruby: [2.7, 3.3, head]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake compile
- run: bundle exec rake test