Skip to content

Merge branch 'main' of https://github.com/waggle-sensor/plugin-cmv-fftpc #11

Merge branch 'main' of https://github.com/waggle-sensor/plugin-cmv-fftpc

Merge branch 'main' of https://github.com/waggle-sensor/plugin-cmv-fftpc #11

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 plugin-cmv pytest /app/test_app.py