Sha256: 60fdf894170930d197d0f3ba5e9eaab04da3f2154c4481ff7f018a260ecaa166
Contents?: true
Size: 699 Bytes
Versions: 1
Compression:
Stored size: 699 Bytes
Contents
name: CI on: push: branches: - master pull_request: jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - '2.5' - '2.6' - '2.7' - '3.0' - ruby-head continue-on-error: ${{ matrix.ruby == 'ruby-head' }} services: memcached: image: memcached ports: - 11211:11211 redis: image: redis ports: - 6379:6379 steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: | bundle exec rake
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
suo-0.4.0 | .github/workflows/CI.yml |