Implementation of GitHub Actions based continuous integration tests #2836
Implementation of GitHub Actions based continuous integration tests #2836RichardWallis merged 17 commits intomainfrom
Conversation
|
Tests run in less than 5 mins - signifiant improvement over Travis-CI.org /cc @gkellogg |
| - name: Set up Ruby | ||
| uses: ruby/setup-ruby@v1 | ||
| with: | ||
| ruby-version: 2.6 |
There was a problem hiding this comment.
We should update this to at least Ruby 2.8, if not 3.0.
| - name: Install Ruby dependencies | ||
| run: | | ||
| gem update --system --conservative || (gem i "rubygems-update:~>2.7" --no-document && update_rubygems) | ||
| gem update bundler --conservative |
There was a problem hiding this comment.
This two steps are probably not necessary, any longer.
| - name: Run Ruby tests | ||
| run: (cd software/scripts; bundle exec rake) | ||
| env: | ||
| SOFT_LINT: true |
There was a problem hiding this comment.
With a relatively low number of failures, we could go to a black-list model to mark those tests expected to fail, which would then be useful to note when those tests pass, and to make sure that newly introduced examples pass before being merged.
|
@gkellogg |
|
Sure, I'll take a crack at it. |
Re Issue #2835
Removal of .travis.yml Travis-CI integration file
Replaced with ci_tests.yml file in .github/workflows