Skip to content

Commit

Permalink
Merge pull request #5 from AdautoDCJunior/lesson-05-ci-automate-tests…
Browse files Browse the repository at this point in the history
…-pipeline-git-actions

Aula 05 do curso "Integração Contínua: testes automatizados e pipeline no Github Actions"
  • Loading branch information
AdautoDCJunior authored Jan 17, 2024
2 parents 03b33f1 + 64a54a9 commit be4c22e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,18 @@ jobs:

test:
runs-on: ubuntu-latest

strategy:
matrix:
go_version: ['1.17', '1.18', '>=1.18']

steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
go-version: ${{ matrix.go_version }}

- name: Build DB
run: docker compose build
Expand Down

0 comments on commit be4c22e

Please sign in to comment.