From 33e11d4ebee56e2509265d4f2d23676c21ee6f12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adauto=20J=C3=BAnior?= Date: Thu, 18 Jan 2024 07:48:33 -0300 Subject: [PATCH 1/4] =?UTF-8?q?Commit=2001=20da=20Aula=2001=20do=20curso?= =?UTF-8?q?=20"Integra=C3=A7=C3=A3o=20Cont=C3=ADnua:=20Pipeline=20Docker?= =?UTF-8?q?=20no=20Github=20Actions"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index e722b49..a729b60 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -2,9 +2,9 @@ name: Go on: push: - branches: [ "main" ] + branches: [ '*' ] pull_request: - branches: [ "main" ] + branches: [ '*' ] jobs: @@ -22,7 +22,7 @@ jobs: uses: actions/setup-go@v4 with: go-version: ${{ matrix.go_version }} - + - name: Build DB run: docker compose build From 19a36acb638f5820c1d5bc3e687ca75c0893db2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adauto=20J=C3=BAnior?= Date: Thu, 18 Jan 2024 08:18:59 -0300 Subject: [PATCH 2/4] =?UTF-8?q?Commit=2002=20da=20Aula=2001=20do=20curso?= =?UTF-8?q?=20"Integra=C3=A7=C3=A3o=20Cont=C3=ADnua:=20Pipeline=20Docker?= =?UTF-8?q?=20no=20Github=20Actions"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index a729b60..77a24c0 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -9,11 +9,12 @@ on: jobs: test: - runs-on: ubuntu-latest - strategy: matrix: go_version: ['1.17', '1.18', '>=1.18'] + os: ['ubuntu-latest', 'ubuntu-18.04'] + + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 From e7521a01faf6db4b155d2a90e482018d45e92adf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adauto=20J=C3=BAnior?= Date: Thu, 18 Jan 2024 08:37:26 -0300 Subject: [PATCH 3/4] =?UTF-8?q?Commit=2002.01=20da=20Aula=2001=20do=20curs?= =?UTF-8?q?o=20"Integra=C3=A7=C3=A3o=20Cont=C3=ADnua:=20Pipeline=20Docker?= =?UTF-8?q?=20no=20Github=20Actions"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 77a24c0..88c9930 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -12,8 +12,8 @@ jobs: strategy: matrix: go_version: ['1.17', '1.18', '>=1.18'] - os: ['ubuntu-latest', 'ubuntu-18.04'] - + os: ['ubuntu-latest', 'windows-latest'] + runs-on: ${{ matrix.os }} steps: From 4e28e3738557474820c229e428e5b3e68bf3253c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adauto=20J=C3=BAnior?= Date: Thu, 18 Jan 2024 08:42:51 -0300 Subject: [PATCH 4/4] =?UTF-8?q?Commit=2002.02=20da=20Aula=2001=20do=20curs?= =?UTF-8?q?o=20"Integra=C3=A7=C3=A3o=20Cont=C3=ADnua:=20Pipeline=20Docker?= =?UTF-8?q?=20no=20Github=20Actions"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 88c9930..8396370 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -12,7 +12,7 @@ jobs: strategy: matrix: go_version: ['1.17', '1.18', '>=1.18'] - os: ['ubuntu-latest', 'windows-latest'] + os: ['ubuntu-latest', 'ubuntu-20.04'] runs-on: ${{ matrix.os }}