Skip to content

Commit

Permalink
Run actions with docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinMind committed May 17, 2024
1 parent 1a5c9dc commit 754ea05
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/verify-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,24 @@ jobs:
version: ${{ steps.build.outputs.version }}
run: |
make check
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Build Docker image
id: build
uses: ./.github/actions/build-docker

- name: Run Test
uses: ./.github/actions/run-docker
with:
version: ${{ steps.build.outputs.version }}
services: ''
run: |
pytest \
-n auto \
-m 'not es_tests and not needs_locales_compilation and not static_assets and not internal_routes_allowed' \
-v src/olympia/amo

0 comments on commit 754ea05

Please sign in to comment.