Sha256: 3462add6461040fddc73bb7b7e194bd62102b5b3d65fcd3d77c5e40dac29bb85

Contents?: true

Size: 575 Bytes

Versions: 2

Compression:

Stored size: 575 Bytes

Contents

name: Ruby

on:
  - push
  - pull_request

jobs:
  test:

    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
        # change this to (see https://github.com/ruby/setup-ruby#versioning):
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 3.2
      - name: Install dependencies
        run: bundle install
      - name: Run tests
        run: bundle exec rake spec
      - name: Run Rubocop
        run: bundle exec rubocop

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vgcal-0.5.1 .github/workflows/ruby.yml
vgcal-0.5.0 .github/workflows/ruby.yml