Skip to content

[SG-2878] New resource_type '*' for terraform provider Issue #219 #43

[SG-2878] New resource_type '*' for terraform provider Issue #219

[SG-2878] New resource_type '*' for terraform provider Issue #219 #43

Workflow file for this run

name: Coverage
on: [push, pull_request]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov
pip install .
- name: Run tests with coverage
run: |
pytest --cov-branch --cov-report=xml --cov=tirith tests/
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}