-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
e2e tests: add CI workflow for e2e tests, adjusted directory path for…
… csms
- Loading branch information
1 parent
5eaa933
commit 847c973
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: End-to-End Tests | ||
on: | ||
push: | ||
branches: [ '*' ] | ||
|
||
jobs: | ||
build-and-test: | ||
name: Build docker and Run E2E Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.20' | ||
- name: Install Docker Compose | ||
run: | | ||
apt-get update | ||
apt-get install docker-compose | ||
docker-compose --version | ||
- name: Build and Start Docker Compose | ||
run: ./e2e_tests/run-e2e-tests.sh |
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