build(deps): bump tom-select from 2.6.0 to 2.6.1 #233
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: "ruby: test" | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| ruby-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: "Install the Ruby version in .ruby-version" | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - name: "Initialize a test database" | |
| env: | |
| RAILS_ENV: test | |
| run: | | |
| bundle exec rake db:create | |
| bundle exec rake db:schema:load | |
| - name: "Run rake" | |
| env: | |
| RAILS_ENV: test | |
| COVERALLS_REPO_TOKEN : ${{ secrets.COVERALLS_REPO_TOKEN }} | |
| run: | | |
| bundle exec rake |