📌 Pin starting version to 0.1.0 #30
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 | |
- name: Create/Update tag | |
uses: rickstaa/[email protected] | |
with: | |
tag: "latest" | |
message: "Latest release" | |
force_push_tag: true |