.github/workflows/run_tests.yaml in prop_check-0.18.2 vs .github/workflows/run_tests.yaml in prop_check-1.0.0

- old
+ new

@@ -13,11 +13,12 @@ test: runs-on: ubuntu-latest strategy: matrix: - # NOTE: Ruby 3.2 is not in here, as `doctest-core` first needs to be updated to support it - ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2'] + # NOTE: We're stopping testing Ruby < 3.0 since prop_check version 1.0.0 + # It will _probably_ still work but as they're end-of-life, no guarantees! + ruby-version: ['3.0', '3.1', '3.2'] steps: - uses: actions/checkout@v3 - name: Set up Ruby # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,