doc: clarify the CHANGELOG entry #147
Workflow file for this run
This file contains 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: downstream | |
concurrency: | |
group: "${{github.workflow}}-${{github.ref}}" | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 8 * * 1,3,5" # At 08:00 on Monday, Wednesday, and Friday # https://crontab.guru/#0_8_*_*_1,3,5 | |
push: | |
branches: | |
- main | |
- v*.*.x | |
tags: | |
- v*.*.* | |
pull_request: | |
types: [opened, synchronize] | |
branches: | |
- '*' | |
jobs: | |
downstream: | |
name: downstream-${{matrix.name}} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- url: https://github.com/rails/tailwindcss-rails | |
name: rails-unit | |
command: "bin/test" | |
ruby: "3.3" | |
- url: https://github.com/rails/tailwindcss-rails | |
name: rails-integration | |
command: "env TAILWINDCSSOPTS=--path=../../.. test/integration/user_journey_test.sh" | |
ruby: "3.3" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{matrix.ruby}} | |
- run: bundle install --local || bundle install | |
- run: bundle exec rake download | |
- run: git clone --depth=1 ${{matrix.url}} ${{matrix.name}} | |
- name: ${{matrix.name}} test suite | |
working-directory: ${{matrix.name}} | |
run: | | |
bundle remove tailwindcss-ruby || true | |
bundle add tailwindcss-ruby --path=".." | |
bundle install --local || bundle install | |
${{matrix.command}} |