Skip to content

Commit

Permalink
Create CI.yml
Browse files Browse the repository at this point in the history
Starts creating a CI with only the docker cimpose run for integration tests
  • Loading branch information
asulis authored Nov 5, 2024
1 parent 060a195 commit 06fb920
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI for integration tests execution and image build
on:
workflow_dispatch:
schedule:
- cron: '0 10 * * *' # every day at 10am
push:
branches:
- master
tags:
- 'v*.*.*'
pull_request:
permissions: read-all
jobs:
run-docker-compose-for-tests:
runs-on: ubuntu-latest
steps:
- name: Run compose
working-directory: ./negotiator_directory_sync/tests/compose
run: docker-compose -f docker-compose-integation-tests.yml up -d

0 comments on commit 06fb920

Please sign in to comment.