Sha256: ae064822562d80b84584ff84084433f022107a72f5da395300907bb82bfb55ff
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 KB
Contents
name: rspec on: push: branches: [ master ] pull_request: jobs: build: name: Test on Ruby ${{ matrix.ruby }} ${{ matrix.os }} runs-on: ${{ matrix.os }} continue-on-error: ${{ matrix.experimental }} strategy: fail-fast: false matrix: ruby: [ '2.4', '2.5', '2.6', '2.7' ] os: [ ubuntu-latest, windows-latest, macos-latest ] experimental: [ false ] include: - ruby: '3.0' os: 'ubuntu-latest' experimental: true - ruby: '3.0' os: 'windows-latest' experimental: true - ruby: '3.0' os: 'macos-latest' experimental: true steps: - uses: actions/checkout@master - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - if: matrix.os == 'macos-latest' run: brew install lcdf-typetools - if: matrix.os == 'macos-latest' run: bundle exec rspec env: TEST_ENV: CI - if: matrix.os != 'macos-latest' run: bundle exec rspec --tag ~dev env: TEST_ENV: CI
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fontist-1.8.12 | .github/workflows/rspec.yml |
fontist-1.8.11 | .github/workflows/rspec.yml |