Run all specs from ruby/spec #1130
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: Run all specs from ruby/spec | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
env: | |
BUNDLE_WITH: run_all_specs | |
jobs: | |
specs: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: rake docker_test_all_ruby_spec_nightly | |
env: | |
STATS_API_SECRET: ${{ secrets.STATS_API_SECRET }} |