importando o readme como binário #48
Workflow file for this run
This file contains hidden or 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: Continuous Integration | |
| on: | |
| pull_request: | |
| jobs: | |
| testing: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: 1.18.0 | |
| - name: Install Dependencies | |
| run: go mod download | |
| - name: Testing code | |
| run: | | |
| if go test ./...; then | |
| echo "All tests have passed✅" | |
| else | |
| echo "Test failed❌" | |
| exit 1 | |
| fi |