Sha256: 9745ad577d98fc84177b8da78fb8309395e8a906d3b999c4f3bb003ff0877eb8
Contents?: true
Size: 1.65 KB
Versions: 2
Compression:
Stored size: 1.65 KB
Contents
name: ci jobs: specs: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - '3.0' - '2.7' - '2.6' - '2.5' - 'jruby-9.2.13.0' bundler: - '2.1.4' - '2.2.4' include: - ruby: '2.7' coverage: 'true' steps: - uses: actions/checkout@v2 - uses: actions/cache@v2 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gems- - name: Install package dependencies run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS" - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} bundler: ${{matrix.bundler}} - name: Bundle install env: DIFFEND_DEVELOPMENT: true run: | bundle _${{matrix.bundler}}_ config path vendor/bundle bundle _${{matrix.bundler}}_ install --jobs 4 --retry 3 - name: Run all tests env: GITHUB_COVERAGE: ${{matrix.coverage}} run: bundle _${{matrix.bundler}}_ exec rspec coditsu: runs-on: ubuntu-latest strategy: fail-fast: false steps: - uses: actions/checkout@v2 with: fetch-depth: 0 - name: Run Coditsu env: CODITSU_API_KEY: ${{ secrets.CODITSU_API_KEY }} CODITSU_API_SECRET: ${{ secrets.CODITSU_API_SECRET }} run: \curl -sSL https://api.coditsu.io/run/ci | bash on: push: schedule: - cron: '0 1 * * *'
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
diffend-monitor-0.2.37 | .github/workflows/ci.yml |
diffend-0.2.37 | .github/workflows/ci.yml |