Skip to content

Commit

Permalink
Deploy Robot Reports To GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
thinogueiras committed Mar 10, 2024
1 parent 5508994 commit f2c30e3
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/continuous-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,18 @@ jobs:
- name: Send report to commit
uses: joonvena/[email protected]
with:
gh_access_token: ${{ secrets.GITHUB_TOKEN }}
gh_access_token: ${{ secrets.GITHUB_TOKEN }}

deploy:
needs: [reports]
runs-on: ubuntu-latest
name: Deploy Reports 🚀📄
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Deploy Robot Reports to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./reports

1 comment on commit f2c30e3

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Robot Results

✅ Passed ❌ Failed ⏭️ Skipped Total Pass % ⏱️ Duration
15 0 0 15 100 715.938ms

Passed Tests

Name ⏱️ Duration Suite
Deve retornar todas as contas 0.032 s Accounts
Deve editar uma conta 0.061 s Accounts
Deve inserir uma conta 0.032 s Accounts
Não deve inserir uma conta com mesmo nome 0.031 s Accounts
Não deve remover conta com movimentação 0.058 s Accounts
Deve exigir autenticação 0.077 s Authorization
Deve validar o saldo da conta 0.061 s Balance
Deve retornar todas as Movimentações 0.030 s Movement
Deve inserir movimentação 0.073 s Movement
Deve validar os campos obrigatórios para a inserção de uma movimentação 0.028 s Movement
Não deve inserir movimentação com data futura 0.080 s Movement
Deve remover uma movimentação 0.056 s Movement
Deve validar o JSON Schema para Contas 0.031 s Schema
Deve validar o JSON Schema para Saldo 0.032 s Schema
Deve validar o JSON Schema para Movimentações 0.034 s Schema

Please sign in to comment.