Skip to content

Update archive test to [email protected]+4

Update archive test to [email protected]+4 #192

name: Unit and Integration Tests
on: push
jobs:
unit_and_int_tests:
runs-on: ubuntu-latest
name: Unit and Integration Tests
steps:
- uses: actions/checkout@v3
- id: common
uses: ghga-de/gh-action-common@v2
- name: Run pytest
run: |
export ${{ steps.common.outputs.CONFIG_YAML_ENV_VAR_NAME }}="${{ steps.common.outputs.CONFIG_YAML }}"
pytest \
--cov="${{ steps.common.outputs.MAIN_SRC_DIR }}" \
--cov-report=xml
- id: coveralls
name: Upload coverage to coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install --upgrade coveralls
coveralls --service=github