Skip to content

Commit

Permalink
feat: upload artifacts from visual comparison for inspection
Browse files Browse the repository at this point in the history
It allows evaluating whether the visual differences are acceptable
  • Loading branch information
knarewski committed Nov 22, 2024
1 parent 5a9cf2c commit 8291ae1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,11 @@ jobs:
run: bundle exec rake compile
- name: run the tests
run: bundle exec rspec
id: test
- name: upload test artifacts
uses: actions/upload-artifact@v4
with:
name: "visual-matching-results-ruby-${{ matrix.ruby}}"
path: 'tmp/reference-image-matches'
if-no-files-found: ignore
if: success() || steps.test.conclusion == 'failure'

0 comments on commit 8291ae1

Please sign in to comment.