Skip to content

Remove container logic from Github Actions workflow #360

Remove container logic from Github Actions workflow

Remove container logic from Github Actions workflow #360

Workflow file for this run

---
name: Pull request pre-check test
on:
pull_request:
push:
branches: [main]
jobs:
pre-commit:
name: Run the pre-commit hook
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Run coverage
run: |
cd src/ipa-tuura/
coverage manage.py test domains -v 2
coverage report
coverage html