Sha256: 11cbca6e42e6ccced9d43b7e133542aa8beb4941d95ac588cbfec4c051e4d359
Contents?: true
Size: 514 Bytes
Versions: 1
Compression:
Stored size: 514 Bytes
Contents
name: CI on: [push] jobs: tests: runs-on: ubuntu-latest strategy: matrix: ruby: [2.6] steps: - uses: actions/checkout@master - name: Sets up the Ruby version uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Sets up the environment run: | gem install bundler bundle install --jobs 4 --retry 3 bundle install - name: Runs Rubocop run: rubocop - name: Runs tests run: rspec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
numverify-0.3.2 | .github/workflows/ci.yml |