Skip to content

docker minor

docker minor #13

Workflow file for this run

name: Python Application CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- uses: actions/checkout@v4
# Set up Docker
- name: Set up Docker
uses: docker/setup-buildx-action@v2
# Build the Docker image
- name: Build Docker Image
run: |
docker build -t plugin-cmv .
# Run tests inside the Docker container
- name: Run Tests
run: |
docker run --rm --entrypoint pytest plugin-cmv /app/test_app.py