diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 0000000..c1588e7 --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,20 @@ +name: scalatest-maven-plugin + +on: [push] + +jobs: + verify: + + runs-on: ubuntu-latest + + steps: + - name: git + uses: actions/checkout@v2 + + - name: java + uses: actions/setup-java@v1.4.2 + with: + java-version: '8' + + - name: maven + run: ./mvnw -B clean verify --file pom.xml