Sha256: 5844e3601804f1679d4c906fa788adca0909d3d21793461e7b51447259a8eda1
Contents?: true
Size: 647 Bytes
Versions: 1
Compression:
Stored size: 647 Bytes
Contents
name: CI on: push: branches: - main pull_request: branches: - main jobs: ci: runs-on: ubuntu-latest strategy: matrix: ruby: - 3.1 - 3.0 - 2.7 - 2.6 - 2.5 - 2.4 - 2.3 steps: - name: Checkout uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} bundler-cache: true - name: Rubocop run: bin/rubocop - name: Rspec run: bin/rspec - name: Doc tests run: bin/yard doctest
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fun-ruby-0.0.1 | .github/workflows/ci.yml |