Skip to content
Closed
4 changes: 3 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
restore-keys: ${{ runner.os }}-m2

- name: Build and Test Java Services
run: ./services/price-producer/mvnw -B test && ./services/price-streamer/mvnw -B test
run: |
./services/price-producer/mvnw -B -f ./services/price-producer/pom.xml package -DskipTests
./services/price-streamer/mvnw -B -f ./services/price-streamer/pom.xml package -DskipTests

- name: Install Python Dependencies
run: pip install -r ./services/ml-service/requirements.txt
Expand Down
Empty file modified services/price-producer/mvnw
100644 → 100755
Empty file.
Empty file modified services/price-streamer/mvnw
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
@Configuration
public class AppConfig {


@Bean
public RestTemplate restTemplate() {
return new RestTemplate();
Expand Down