File tree 5 files changed +7
-10
lines changed
5 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ defaults:
17
17
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference
18
18
shell : bash
19
19
20
+ # @todo #1154 Deploy should depend on successful execution of the other pipelines
20
21
jobs :
21
22
deploy :
22
23
name : Deploy
Original file line number Diff line number Diff line change 3
3
- (infrastructure) port JavaScript unit tests from Jasmine to Jest
4
4
- (infrastructure) discontinue usage of Danger
5
5
- (infrastructure) discontinue usage of 0pdd
6
+ - (infrastructure) migrate CI from Travis to GitHub Actions
6
7
7
8
0.4.6
8
9
- (feature) users can add a comment to a series
Original file line number Diff line number Diff line change 1
1
# My Stamps
2
2
3
- [ ![ Build Status] ( https://api.travis-ci.com/php-coder/mystamps.svg?branch=master )] ( https://app.travis-ci.com/github/php-coder/mystamps )
3
+ [ ![ Integration Tests] ( https://github.com/php-coder/mystamps/actions/workflows/integration-tests-h2.yml/badge.svg?branch=master )] ( https://github.com/php-coder/mystamps/actions/workflows/integration-tests-h2.yml )
4
+ [ ![ Unit Tests] ( https://github.com/php-coder/mystamps/actions/workflows/unit-tests.yml/badge.svg )] ( https://github.com/php-coder/mystamps/actions/workflows/unit-tests.yml )
5
+ [ ![ Static Analysis] ( https://github.com/php-coder/mystamps/actions/workflows/static-analysis.yml/badge.svg )] ( https://github.com/php-coder/mystamps/actions/workflows/static-analysis.yml )
4
6
[ ![ Uptime Statistic] ( https://badgen.net/uptime-robot/month/ur243278-551fbb732949dbdee27c7552 )] ( https://stats.uptimerobot.com/1jXAjFpgP )
5
7
6
8
## What is it?
Original file line number Diff line number Diff line change 4
4
WireMock is a simulator for HTTP-based APIs. We use this tool in the integration tests for mocking
5
5
external services. For example, for testing import of the stamps series from sites.
6
6
7
- ## Running on TravisCI
7
+ ## Running on CI
8
8
WireMock is automatically running/stopping during integration tests execution (` ./mvnw verify ` ).
9
9
10
10
## Running manually
Original file line number Diff line number Diff line change 228
228
<scope >runtime</scope >
229
229
</dependency >
230
230
231
- <!--
232
- Required for "postgres" profile (see src/main/resources/application-postgres.properties).
233
- Perhaps, you would need to override the following properties as by default it's
234
- configured for TravisCI environment:
235
- - spring.datasource.url
236
- - spring.datasource.username
237
- - spring.datasource.password
238
- -->
231
+ <!-- Required for "postgres" profile (see src/main/resources/application-postgres.properties) -->
239
232
<dependency >
240
233
<groupId >org.postgresql</groupId >
241
234
<artifactId >postgresql</artifactId >
You can’t perform that action at this time.
0 commit comments