.github/workflows/test_on_ubuntu.yml in duckdb-0.9.1.2 vs .github/workflows/test_on_ubuntu.yml in duckdb-0.9.2
- old
+ new
@@ -1,11 +1,11 @@
name: Ubuntu
on:
- push:
- branches:
- - main
+ # push:
+ # branches:
+ # - main
pull_request:
types:
- opened
- synchronize
- reopened
@@ -13,12 +13,12 @@
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
- ruby: ['2.7.8', '3.0.6', '3.1.4', '3.2.2', '3.3.0-preview2', 'head']
- duckdb: ['0.9.1', '0.8.1']
+ ruby: ['2.7.8', '3.0.6', '3.1.4', '3.2.2', '3.3.0-preview3', 'head']
+ duckdb: ['0.9.2', '0.8.1']
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
@@ -55,10 +55,10 @@
- name: test with Ruby ${{ matrix.ruby }}
env:
DUCKDB_VERSION: ${{ matrix.duckdb }}
run: |
- rake test
+ env RUBYOPT=-W:deprecated rake test
post-test:
name: All tests passed on Ubuntu
runs-on: ubuntu-latest
needs: test