.github/workflows/test.yml in net-ftp-0.3.5 vs .github/workflows/test.yml in net-ftp-0.3.6

- old
+ new

@@ -1,14 +1,21 @@ name: ubuntu on: [push, pull_request] jobs: + ruby-versions: + uses: ruby/actions/.github/workflows/ruby_versions.yml@master + with: + engine: cruby + min_version: 2.6 + build: + needs: ruby-versions name: build (${{ matrix.ruby }} / ${{ matrix.os }}) strategy: matrix: - ruby: [ head, '3.1', '3.0', '2.7', '2.6' ] + ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} os: [ ubuntu-latest, macos-latest ] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - name: Set up Ruby