Skip to content

Add ports and step names in test workflow #28

Add ports and step names in test workflow

Add ports and step names in test workflow #28

Workflow file for this run

name: Tests
on: push
jobs:
tests:
runs-on: ubuntu-latest
name: Tests
steps:
- id: checkout
name: Check out repository
uses: actions/checkout@v3
- id: secrets
name: Create Kafka secrets
run: |
.devcontainer/kafka_secrets/create_secrets.sh
- id: containers
name: Set up containers
run: |
docker-compose -f .devcontainer/docker-compose.yml up -d
- id: common
name: Run all common steps
uses: ghga-de/gh-action-common@v3
- id: pytest
name: Run all tests
run: |
export ${{ steps.common.outputs.CONFIG_YAML_ENV_VAR_NAME }}="${{ steps.common.outputs.CONFIG_YAML }}"
pytest \
--cov="${{ steps.common.outputs.PACKAGE_NAME }}" \
--cov-report=xml \
tests
- id: coveralls
name: Upload coverage to coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install --upgrade coveralls
coveralls --service=github