Merge pull request #6 from dipjyotimetia/uplift-documentation #35
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
name: Tests | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
test: | |
name: event-shark | |
runs-on: ubuntu-latest | |
env: | |
DOCKER_BUILDKIT: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Application | |
run: docker-compose up -d | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: ./go.mod | |
- name: Run tests | |
run: make test | |
- name: Compose down | |
run: docker-compose down --rmi all |