Skip to content

Commit

Permalink
Merge pull request #16 from GAulombard/workflow
Browse files Browse the repository at this point in the history
workflow
  • Loading branch information
GAulombard authored Jan 14, 2023
2 parents 331a8ce + b7c23be commit 2839c30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
git config user.name "GitHub Actions"
- name: Publish JAR
run: mvn -B release:prepare release:perform -DMYSQL_USER=${{ env.MYSQL_USER }} -DMYSQL_PORT=3307 -DMYSQL_PASSWORD=${{ env.MYSQL_ROOT_PASSWORD }}
run: mvn -B release:prepare release:perform -DskipITs -DMYSQL_USER=${{ env.MYSQL_USER }} -DMYSQL_PORT=3307 -DMYSQL_PASSWORD=${{ env.MYSQL_ROOT_PASSWORD }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
@SpringBootTest
@AutoConfigureMockMvc
@TestPropertySource(locations = "classpath:application-test.properties")
class DummyControllerTest {
class DummyControllerIT {

@Autowired
private MockMvc mockMvc;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@SpringBootTest
@AutoConfigureMockMvc
@TestPropertySource(locations = "classpath:application-test.properties")
class IndexControllerTest {
class IndexControllerIT {
@Autowired
private MockMvc mockMvc;
@Autowired
Expand Down

0 comments on commit 2839c30

Please sign in to comment.