use template sensor for active video calls #642
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, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.0.0 | |
- uses: actions/cache@v2 | |
with: | |
path: vendor/bundle | |
key: gems-build-rails-main-ruby-3.0.0-${{ hashFiles('**/Gemfile.lock') }} | |
- name: Lint with standard | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 4 --retry 3 | |
bundle exec standardrb | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.0.0 | |
- uses: actions/cache@v2 | |
with: | |
path: vendor/bundle | |
key: gems-build-rails-main-ruby-3.0.0-${{ hashFiles('**/Gemfile.lock') }} | |
- name: Run tests | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 4 --retry 3 | |
bundle exec rake db:test:prepare | |
bundle exec rake | |
env: | |
RAILS_ENV: test | |
DATABASE_URL: "postgres://postgres@localhost:5432/timeframe_test" |