Skip to content

Commit

Permalink
add(751): add github actions to execute tests
Browse files Browse the repository at this point in the history
- created workflow directory and test.yml workflow
- added a job that executes existing compose.test.yml file
  to run tests
- job will be triggered when a PR is raised to master or
  push happens to master ( post merge also will trigger a
  job )
- added concurrency check so that old job can be cancelled
  if a new push happens
  • Loading branch information
indiVar0508 committed Jun 24, 2023
1 parent 6e16f35 commit 4226a05
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test

on:
push:
branches:
- master
pull_request:
branches:
- master # Only run when PR is raised for master

# This ensures for a single PR one job is run in case of multiple runs
concurrency:
group: build-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Run Tests
- name: Run Tests
run: docker-compose -f "docker-compose.test.yml" up --build

0 comments on commit 4226a05

Please sign in to comment.