.github/workflows/test.yml in timeout-0.1.1 vs .github/workflows/test.yml in timeout-0.2.0

- old
+ new

@@ -9,16 +9,14 @@ matrix: ruby: [ 2.7, 2.6, 2.5, 2.4, head ] os: [ ubuntu-latest, macos-latest ] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@master + - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Install dependencies - run: | - gem install bundler --no-document - bundle install + run: bundle install - name: Run test run: rake test