Update statistical_tests.yml #17
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 Geradores | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Verificar código | ||
uses: actions/checkout@v3 | ||
- name: Criar arquivo de saída | ||
run: | | ||
# Aqui você deve incluir o comando que gera o output.bin. | ||
# Por exemplo, substitua pelo comando correto: | ||
echo -e "10000000000000000" > output.bin # Exemplo de conteúdo, ajuste conforme necessário | ||
- name: Executar "SP800-22" | ||
run: | | ||
./statistical_tests/SP800-22/assess 10000 <<EOF | ||
0 | ||
output.bin | ||
1 | ||
0 | ||
100 | ||
1 | ||
EOF |