Skip to content

🌟 Update steps to use #28

🌟 Update steps to use

🌟 Update steps to use #28

Workflow file for this run

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