diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e2aecfd0..933acef1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -27,7 +27,7 @@ jobs: integration-test: strategy: matrix: - middleware: [ "tomcat", "jetty", "jbossas", "jbosseap" ] + middleware: [ "tomcat", "jetty", "jbossas", "jbosseap", "wildfly" ] runs-on: ubuntu-latest name: ${{ matrix.middleware }} needs: [ unit-test ] diff --git a/boot/src/test/java/com/reajason/javaweb/boot/BootApplicationTests.java b/boot/src/test/java/com/reajason/javaweb/boot/BootApplicationTests.java deleted file mode 100644 index 6fbac005..00000000 --- a/boot/src/test/java/com/reajason/javaweb/boot/BootApplicationTests.java +++ /dev/null @@ -1,13 +0,0 @@ -package com.reajason.javaweb.boot; - -import org.junit.jupiter.api.Test; -import org.springframework.boot.test.context.SpringBootTest; - -@SpringBootTest -class BootApplicationTests { - - @Test - void contextLoads() { - } - -}