Migrate jcpunk/tuned to voxpupuli #503
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: noop run | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- master | |
jobs: | |
unit: | |
runs-on: ubuntu-latest | |
name: Run msync --noop against all modules | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
bundler-cache: true | |
- name: Run msync --noop | |
run: bundle exec msync update --noop --git-base=https://github.com/ | |
metadata_json_deps: | |
runs-on: ubuntu-latest | |
name: Run metadata_json_deps on all modules | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
bundler-cache: true | |
- name: Run msync --noop | |
run: bundle exec msync clone --git-base=https://github.com/ | |
- run: bundle exec rake metadata_deps | |
tests: | |
needs: | |
- unit | |
- metadata_json_deps | |
runs-on: ubuntu-latest | |
name: Test suite | |
steps: | |
- run: echo Test suite completed |