Skip to content

Commit

Permalink
Merge pull request #665 from wurmlab/actions-grg
Browse files Browse the repository at this point in the history
Actions grg
  • Loading branch information
yannickwurm authored Jul 20, 2023
2 parents 37b3cb1 + f3d3d3a commit bf24a05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# https://github.com/actions/checkout/issues/19
# ...so all this needs to happen in a single job.
#
name: Tests
name: Tests
on:
push:
branches:
Expand Down Expand Up @@ -58,10 +58,10 @@ name: Tests
continue-on-error: true
run: bundle exec rspec spec/*_spec.rb spec/blast_versions/blast_2.9.0/*
- name: CodeClimate after-build (success)
if: steps.rpsec.outcome == 'success'
if: steps.rspec.outcome == 'success'
run: cc-test-reporter after-build --exit-code 0
- name: CodeClimate after-build (failure)
if: steps.rpsec.outcome != 'success'
if: steps.rspec.outcome != 'success'
run: cc-test-reporter after-build --exit-code 1
- name: upload code coverage results
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit bf24a05

Please sign in to comment.