Skip to content

Commit

Permalink
Run tests within the built dev-quality-eval docker image itself
Browse files Browse the repository at this point in the history
Closes #415
  • Loading branch information
Munsio committed Feb 12, 2025
1 parent 030bb02 commit 1e652c8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/job-container-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,15 @@ jobs:
push: true
cache-from: type=gha
cache-to: type=gha,mode=max

test:
runs-on: ubuntu-latest
needs: docker

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Run tests from Docker image
run: |
docker run -v ./docs:/app/svg --user $(id -u):$(id -g) --rm ghcr.io/symflower/eval-dev-quality:${GITHUB_SHA::7} svgexport /app/svg/cta.svg /app/svg/cta.png

0 comments on commit 1e652c8

Please sign in to comment.