🔀 Merge pull request #366 from avdi/RFC9586-UIDONLY #1762
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: Run tests | |
on: [push, pull_request] | |
jobs: | |
ruby-versions: | |
uses: ruby/actions/.github/workflows/ruby_versions.yml@master | |
with: | |
engine: cruby | |
min_version: 3.1 | |
build: | |
needs: ruby-versions | |
permissions: | |
contents: read | |
checks: write | |
name: build (${{ matrix.ruby }} / ${{ matrix.os }}) | |
strategy: | |
matrix: | |
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
experimental: [false] | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
rubygems: 3.5.14 | |
- name: Run test | |
run: bundle exec rake test | |
- uses: joshmfrankel/simplecov-check-action@main | |
if: matrix.os == 'ubuntu-latest' && github.event_name != 'pull_request' | |
with: | |
check_job_name: "SimpleCov - ${{ matrix.ruby }}" | |
minimum_suite_coverage: 90 | |
minimum_file_coverage: 40 # TODO: increase this after switching to SASL::AuthenticationExchange | |
github_token: ${{ secrets.GITHUB_TOKEN }} |