Allow multiple dialogs by using the default dialog mechanism in trix #1359
Workflow file for this run
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| ruby-version: ["3.4"] | |
| services: | |
| postgres: | |
| image: postgres:latest | |
| env: | |
| POSTGRES_DB: postgres | |
| POSTGRES_PASSWORD: postgres | |
| POSTGRES_USER: postgres | |
| ports: | |
| - 5432:5432 | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install libvips | |
| run: sudo apt-get update && sudo apt-get install -y libvips | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{matrix.ruby-version}} | |
| bundler-cache: true | |
| - name: Create DB | |
| env: | |
| RAILS_ENV: test | |
| run: | | |
| cp test/dummy/config/database.yml.ci test/dummy/config/database.yml | |
| bin/rails db:setup | |
| - name: Compile assets | |
| env: | |
| RAILS_ENV: test | |
| run: cd test/dummy && bin/rails assets:precompile | |
| - name: Run tests | |
| run: bin/rails test test/* |