π πΏπ¨ Improve output #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: push | |
jobs: | |
actions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Copia repositorio | |
uses: actions/checkout@main | |
- name: Construye imagen | |
run: docker build --tag islasgeci . | |
- name: Verifica el formato | |
run: docker run islasgeci make check | |
- name: Corre pruebas y evalΓΊa cobertura | |
run: docker run islasgeci make coverage | |
- name: Corre mutation testing | |
run: docker run islasgeci make mutants |