├── .github ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── cv.tex └── environment.yml /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leouieda/cv/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leouieda/cv/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leouieda/cv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leouieda/cv/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leouieda/cv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leouieda/cv/HEAD/README.md -------------------------------------------------------------------------------- /cv.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leouieda/cv/HEAD/cv.tex -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leouieda/cv/HEAD/environment.yml --------------------------------------------------------------------------------