Sha256: c8c9c2f5917c94776b7fd019ab4d14f7e436c62670c00e32fe8455bd467b67af
Contents?: true
Size: 1.91 KB
Versions: 3
Compression:
Stored size: 1.91 KB
Contents
name: ci concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true on: pull_request: push: schedule: - cron: '0 1 * * *' jobs: specs: runs-on: ubuntu-latest needs: diffend strategy: fail-fast: false matrix: ruby: - '3.4.0-preview2' - '3.3' - '3.2' - '3.1' include: - ruby: '3.3' coverage: 'true' steps: - uses: actions/checkout@v4 - 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: 'latest' - name: Install latest bundler run: | gem install bundler --no-document gem update --system --no-document bundle config set without 'tools benchmarks docs' - name: Bundle install run: | bundle config set without development bundle install --jobs 4 --retry 3 - name: Run all tests env: GITHUB_COVERAGE: ${{matrix.coverage}} run: bundle exec rspec diffend: runs-on: ubuntu-latest strategy: fail-fast: false steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: 3.3 - name: Install latest bundler run: gem install bundler --no-document - name: Install Diffend plugin run: bundle plugin install diffend - name: Bundle Secure run: bundle secure coditsu: runs-on: ubuntu-latest strategy: fail-fast: false steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Run Coditsu run: \curl -sSL https://api.coditsu.io/run/ci | bash
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
karafka-core-2.4.7 | .github/workflows/ci.yml |
karafka-core-2.4.6 | .github/workflows/ci.yml |
karafka-core-2.4.5 | .github/workflows/ci.yml |