CI를 통한 유닛/연계 테스트 예시 #70
Unanswered
jihoon-seo
asked this question in
Ideas
Replies: 3 comments
-
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Travis CI 정보공유 감사드립니다. 👍 GitHub Actions를 통한 Continuous Integration (CI) 시 SSDB, etcd, codecov 등을 주로 참고하면 좋을 것 같고요. 😄 Linter 종류도 참고하겠습니다. 추가로, CB-Larva의 Linter 적용상황 공유 드리오니 참고 바랍니다.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
[How To Configure a Continuous Integration Testing Environment with Docker and Docker Compose on Ubuntu 14.04] [Automated repository tests on Docker Hub] - name: Run tests
run: |
if [ -f docker-compose.test.yml ]; then
docker-compose --file docker-compose.test.yml build
docker-compose --file docker-compose.test.yml run sut
else
docker build . --file Dockerfile
fi
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
향후 참고/논의/활용 등을 위하여
CI를 통한 유닛/연계 테스트 예시들을 남겨 봅니다.
Beta Was this translation helpful? Give feedback.
All reactions