.github/workflows/ci.yml in rdkafka-0.15.2 vs .github/workflows/ci.yml in rdkafka-0.16.0.beta1
- old
+ new
@@ -23,24 +23,22 @@
matrix:
ruby:
- '3.3'
- '3.2'
- '3.1'
- - '3.1.0'
- '3.0'
- - '3.0.0'
- '2.7'
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: Start Kafka with docker-compose
+ - name: Start Kafka with docker compose
run: |
- docker-compose up -d || (sleep 5 && docker-compose up -d)
+ docker compose up -d || (sleep 5 && docker compose up -d)
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}