Update statistical_tests.yml #60
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: Executar Testes | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Verificar código | |
uses: actions/checkout@v3 | |
with: | |
lfs: true # Habilita o suporte ao Git LFS | |
- name: Executar "TESTU01" | |
run: | | |
sudo apt install -y libtestu01-0-dev | |
gcc -o TESTU01/teste TESTU01/teste.c -lmylib -lprobdist -ltestu01 -lm | |
ls -l TESTU01/ | |
chmod +x TESTU01/teste | |
./TESTU01/teste |