Skip to content

Merge pull request #166 from uyuni-project/dependabot/bundler/rubocop… #157

Merge pull request #166 from uyuni-project/dependabot/bundler/rubocop…

Merge pull request #166 from uyuni-project/dependabot/bundler/rubocop… #157

Workflow file for this run

name: Tests
on:
push:
branches: [ master, devel ]
paths:
- '*.gemspec'
- '**.rb'
- 'Rakefile'
- 'Gemfile'
- 'Gemfile.lock'
- 'bin/tetra'
- 'spec/data/'
- 'lib/template/bundled'
- '.github/workflows/test.yml'
pull_request:
branches: [ master, devel ]
paths:
- '*.gemspec'
- '**.rb'
- 'Rakefile'
- 'Gemfile'
- 'Gemfile.lock'
- 'bin/tetra'
- 'spec/data/'
- 'lib/template/bundled'
- '.github/workflows/test.yml'
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Install dependencies
run: bundle install
- name: git
run: |
git config --global user.name "GitHub Actions Bot"
git config --global user.email "<>"
- name: Run tests and collect coverage
run: bundle exec rake
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4