Add partial matching #11
Workflow file for this run
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: | |
branches: main | |
pull_request: | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@main | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.7' | |
bundler-cache: true | |
- name: Outdated readme check | |
run: bundle exec rake readme:outdated | |
tests: | |
needs: docs | |
strategy: | |
matrix: | |
platform: ["ubuntu-latest", "macos-latest"] | |
ruby: [2.7, 3.0, 3.1, 3.2] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@main | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Run linter | |
run: bundle exec rake lint | |
- name: Run tests | |
run: bundle exec rake test |