Sha256: 3332df2a054c635c1b64b415d0cac1932aa0ff154b39492476ef0925ab5866f2

Contents?: true

Size: 404 Bytes

Versions: 3

Compression:

Stored size: 404 Bytes

Contents

# .github/workflows/ci.yml

name: CI
on: [push, pull_request]
jobs:
  test:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v1
      - name: Setup Ruby
        uses: actions/setup-ruby@v1
        with:
          ruby-version: 2.6.x
      - name: Build and run tests
        run: |
          gem install bundler
          bundle install --jobs 4 --retry 3
          bundle exec rake

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
skunk-0.4.2 .github/workflows/main.yml
skunk-0.4.1 .github/workflows/main.yml
skunk-0.4.0 .github/workflows/main.yml