Fix delete method, which should be an instance method. #96
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: Test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| # lint: | |
| # strategy: | |
| # fail-fast: false | |
| # matrix: | |
| # ruby: | |
| # - '2.7' | |
| # - '3.0' | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v2 | |
| # - name: Set up Ruby 2.7 | |
| # uses: ruby/setup-ruby@v1 | |
| # with: | |
| # ruby-version: ${{ matrix.ruby }} | |
| # bundler-cache: true | |
| # - name: Run Rubocop | |
| # run: bundle exec rake rubocop | |
| spec: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: | |
| - '2.7' | |
| - '3.0' | |
| - '3.1' | |
| - '3.2' | |
| - '3.3' | |
| - '3.4' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: Build and test with Rake | |
| run: | | |
| bundle exec rake |