This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
Add tea.xyz constitution file. #100
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: Async v1 | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ${{matrix.os}}-latest | |
strategy: | |
matrix: | |
os: | |
- ubuntu | |
ruby: | |
- 2.7 | |
env: | |
BUNDLE_GEMFILE: gems/async-v1.rb | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{matrix.ruby}} | |
bundler-cache: true | |
- name: Run tests | |
timeout-minutes: 5 | |
run: bundle exec rspec |