.github/workflows/test_on_macos.yml in duckdb-0.9.1.2 vs .github/workflows/test_on_macos.yml in duckdb-0.9.2

- old
+ new

@@ -1,11 +1,11 @@ name: MacOS on: - push: - branches: - - main + # push: + # branches: + # - main pull_request: types: - opened - synchronize - reopened @@ -13,12 +13,12 @@ jobs: test: runs-on: macos-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 @@ -57,10 +57,10 @@ bundle install --jobs 4 --retry 3 rake build - name: run test with Ruby ${{ matrix.ruby }} run: | - rake test + env RUBYOPT=-W:deprecated rake test post-test: name: All tests passed on macos runs-on: macos-latest needs: test