Prepare 0.0.7 release (#10) #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
test: | |
strategy: | |
fail-fast: true | |
matrix: | |
ruby: | |
- '3.3' | |
- '3.2' | |
- '3.1' | |
- '3.0' | |
os: | |
- ubuntu | |
- macos | |
include: | |
- ruby: head | |
os: ubuntu | |
experimental: true | |
- ruby: head | |
os: macos | |
experimental: true | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: false | |
- name: Generate Makefile | |
run: ruby ext/arraybuffer/extconf.rb | |
- name: Compile gem | |
run: make | |
- name: Which bundler? | |
run: bundle -v | |
- name: Bundle install | |
run: bundle install | |
- name: Run rspec | |
run: bundle exec rspec -I. |