Skip to content

Lazy concurrency (async) #99

Lazy concurrency (async)

Lazy concurrency (async) #99

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- gemfile: Gemfile
ruby: 3.3
steps:
- run: echo BUNDLE_GEMFILE=${{ matrix.gemfile }} > $GITHUB_ENV
- uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run typecheck
run: bundle exec rake tc
- name: Run tests
run: bundle exec rake test