Sha256: 3d046d4bdd047de0a581d3237932e24e21cdbe8c1d445105a6e43e4eba286767
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
name: CI on: push jobs: test: name: Tests runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - "2.5" - "2.6" - "2.7" - "3.0" bundler: - "1" - "2" env: BUNDLE_GEMFILE: gemfiles/bundler${{ matrix.bundler }}.gemfile steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler: ${{ matrix.bundler }} bundler-cache: true - name: Install bundler v1 # Even if we're testing bundler v2, we need v1 available because the fixture components have it in their Gemfile.locks run: gem install bundler -v "~> 1" --no-document - name: Install Graphviz run: sudo apt -qq install graphviz - name: Run tests run: bundle exec rake spec lint: name: Lint Ruby runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: 3.0 - name: Bundle run: bundle - name: Run standard run: bundle exec rake standard
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cobra_commander-0.14.0 | .github/workflows/ci.yml |
cobra_commander-0.13.0 | .github/workflows/ci.yml |