-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from camargo2019/fix/add-pr-templete-and-actions
💚 fix: add pr template and github actions
- Loading branch information
Showing
7 changed files
with
74 additions
and
13 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
### Descrição | ||
|
||
Por favor, inclua uma descrição detalhada das alterações feitas neste Pull Request. Certifique-se de mencionar a motivação por trás das mudanças e os problemas que foram resolvidos. | ||
|
||
- **Tipo de mudança**: (Correção de bug, nova funcionalidade, melhoria, etc.) | ||
- **Problema relacionado**: (Se aplicável, inclua o link ou número da issue relacionada) | ||
|
||
### Alterações principais | ||
|
||
Liste as principais mudanças que foram feitas: | ||
|
||
- [ ] ... | ||
- [ ] ... | ||
|
||
### Testes realizados | ||
|
||
Descreva os testes que você realizou para verificar as suas mudanças. Inclua instruções detalhadas sobre como os revisores podem testar as alterações: | ||
|
||
- [ ] Teste 1: Instrução de como testar | ||
- [ ] Teste 2: Instrução de como testar | ||
|
||
### Checklist | ||
|
||
Antes de enviar o Pull Request, certifique-se de que você completou as seguintes tarefas: | ||
|
||
- [ ] O código segue o padrão de estilo do projeto. | ||
- [ ] Todos os testes novos e existentes passaram. | ||
- [ ] A documentação foi atualizada (se aplicável). | ||
- [ ] Adicionei testes que cobrem as alterações realizadas. | ||
|
||
### Problemas conhecidos (se aplicável) | ||
|
||
Liste qualquer limitação ou problema que ainda não foi resolvido, se aplicável: | ||
|
||
- [ ] ... | ||
|
||
### Comentários adicionais | ||
|
||
Adicione qualquer informação ou contexto adicional que possa ajudar na revisão. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Run Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install dependencies | ||
run: sudo apt-get install -y libboost-all-dev | ||
|
||
- name: Set up Clang | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y clang | ||
- name: Build | ||
run: | | ||
clang++ -o cmr_cache main.cpp -I./vendor/yaml -I/usr/local/include/boost -L/usr/local/lib -lboost_system -lpthread -Wmissing-declarations |
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
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
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
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
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