Skip to content

Commit

Permalink
Fix pipeline and add more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelgfirmino committed Sep 2, 2023
1 parent 8010516 commit 0c91ae5
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 6 deletions.
27 changes: 22 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,31 @@ on:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
test_compile_rest_application:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install dependencies
run: go mod tidy

- name: Test with the Go CLI
run: make test

test_compile_docker_image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
run: make docker-build

running_all_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
Expand All @@ -20,8 +40,5 @@ jobs:
- name: Install dependencies
run: go mod tidy

- name: Build
run: make build

- name: Test with the Go CLI
run: make test
5 changes: 4 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
docker-build:
@docker build -t webhook:latest .

up-build:
@docker-compose up -d --build

up:
@docker-compose up -d --build
@docker-compose up -d

down:
@docker-compose down
Expand Down

0 comments on commit 0c91ae5

Please sign in to comment.