.github/workflows/ruby.yml in active_setting-0.2.0 vs .github/workflows/ruby.yml in active_setting-0.3.0

- old
+ new

@@ -3,14 +3,19 @@ jobs: test: strategy: fail-fast: false matrix: - ruby: ["2.6", "2.7", "3.0"] + ruby: ["3.0", "3.1", "3.2"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rake + - name: Coveralls + uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + path-to-lcov: coverage/lcov.info