diff --git a/.github/workflows/template.yml b/.github/workflows/template.yml new file mode 100644 index 0000000..0e92bdc --- /dev/null +++ b/.github/workflows/template.yml @@ -0,0 +1,14 @@ +on: [push, pull_request] + +name: template + +jobs: + test-latex-template: + runs-on: ubuntu-20.04 + name: Test LaTeX Template + steps: + - uses: actions/checkout@v2 + - name: Build + run: | + docker pull mbredel/thesis-template:latest + docker run --volume $(pwd):/thesis-template/ mbredel/thesis-template:latest diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d96fbdf..0000000 --- a/.travis.yml +++ /dev/null @@ -1,11 +0,0 @@ -sudo: required -dist: trusty -branches: - only: - - master -services: - - docker -before_install: - - docker pull mbredel/thesis-template:latest -script: - - docker run --volume $(pwd):/thesis-template/ mbredel/thesis-template:latest