diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..377f85f --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,27 @@ + +name: Test for silviof/docker-languagetool + +on: [ push ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Set environment variables + run: | + make envout >> ${GITHUB_ENV} + + - name: Prepare system + run: | + make prepare + + - name: Build Docker image + run: | + make build + + - name: Run tests + run: | + make test |