CI for latex files

DateReadtime 1 minutes Tags

I wanted to make a build pipeline for my resume which is written in Latex. Using Travis CI, I was able to add a build that would upload an automatically compiled PDF as a release for every tag in a git repository.

sudo: required
dist: trusty
before_install:
- sudo apt-get -qq …
more ...