Sha256: 75713262d1ce97cc3a2181d5c629f5dd90739483ce27a56fe2c5c42946480b6b

Contents?: true

Size: 473 Bytes

Versions: 3

Compression:

Stored size: 473 Bytes

Contents

name: CI

on:
  member:
  push:
    branches:
    - master
  schedule:
  - cron: "0 9 * * *"

jobs:
  test:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1
    - name: Set up Ruby 2.7
      uses: actions/setup-ruby@v1
      with:
        ruby-version: 2.7.x
    - name: Rspec
      env:
        SHODAN_API_KEY: ${{secrets.SHODAN_API_KEY}}
      run: |
        gem install bundler
        bundle install --jobs 4 --retry 3
        bundle exec rspec

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
shodanz-2.0.3 .github/workflows/ci.yml
shodanz-2.0.2 .github/workflows/ci.yml
shodanz-2.0.1 .github/workflows/ci.yml