jeremyjh / dialyxir

Mix tasks to simplify use of Dialyzer in Elixir projects.
Apache License 2.0
1.68k stars 142 forks source link

Fix gitlab_ci cache files key example #505

Closed wkirschbaum closed 1 year ago

wkirschbaum commented 1 year ago

The current example is invalid: jobs:build-dev:cache config contains unknown keys: files

wkirschbaum commented 1 year ago

I also just want to note that by default plt's will sit in the _build/dev folder, not the priv folder. Does it make sense to perhaps change this?

jeremyjh commented 1 year ago

I also just want to note that by default plt's will sit in the _build/dev folder, not the priv folder. Does it make sense to perhaps change this?

Well these are essentially build artifacts, and we don't want them checked into git so it makes sense to me to put them in the _build folder which is .gitignored by default, in .priv you'd have to .gitignore them particularly.

jeremyjh commented 1 year ago

Thanks!