Skip to content

github: test on ruby 3.3 #5

github: test on ruby 3.3

github: test on ruby 3.3 #5

Workflow file for this run

name: Test Changes
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['3.3']
name: Ruby ${{ matrix.ruby }} test
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Build and test
run: |
sudo apt-get -yqq install libpq-dev
bundle exec rake test_testingbot
env:
TB_KEY: ${{ secrets.TB_KEY }}
TB_SECRET: ${{ secrets.TB_SECRET }}