Sha256: 01bfd539d0ad11820a8708e0d93675cee60a56049c48076b1c7e7c3b690be43f
Contents?: true
Size: 448 Bytes
Versions: 1
Compression:
Stored size: 448 Bytes
Contents
name: CI on: [push, pull_request] jobs: test: name: Ruby ${{ matrix.ruby }} (${{ matrix.os }}) strategy: fail-fast: false matrix: os: [ubuntu-20.04, macos-10.15] ruby: [2.6, 2.7, 3.0] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rspec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mina-1.2.4 | .github/workflows/ci.yml |