Skip to content

Migrate from coveralls to coveralls_reborn #3

Migrate from coveralls to coveralls_reborn

Migrate from coveralls to coveralls_reborn #3

Workflow file for this run

name: Tests
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0', '3.1', '3.2']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: |
sudo apt-get install wget -y
bundle install
- name: Run tests
run: bundle exec rspec