Sha256: 3df008809bfa74586a5e86614f007d3af70b08b45826983dd2959610d1c374f1
Contents?: true
Size: 693 Bytes
Versions: 2
Compression:
Stored size: 693 Bytes
Contents
name: test on: push: branches: [ master ] pull_request: branches: [ master ] workflow_dispatch: defaults: run: shell: bash jobs: run_rspec: name: Run Rspec on ${{ matrix.os }} with ${{ matrix.ruby-version }} runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, macos-latest] ruby-version: ['2.7', '3.0'] steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true - name: Run RSpec run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rspec
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nt-fingerprint-0.1.1 | .github/workflows/test.yml |
nt-fingerprint-0.1.0 | .github/workflows/test.yml |