Skip to content

Instantly share code, notes, and snippets.

View theguuholi's full-sized avatar
😃

Gustavo theguuholi

😃
View GitHub Profile
sudo: required
language: elixir
elixir:
- 1.10
opt_release:
- 22.2.6
addons:
postgres: "9.4"
{
"terminal.integrated.automationShell.osx": "",
"editor.fontFamily": "FiraCode-Retina",
"emmet.includeLanguages": {
"html-eex": "html"
},
"files.associations": {
"*.eex": "html-eex",
"*.leex": "html-eex"
},
# VSCode
Plugins:
- [ ] (https://marketplace.visualstudio.com/items?itemName=HookyQR.beautify)[Beautify]
<div class="p-10 bg-white" id={@repo.id}>
<div class="flex space-x-3">
<img src={@repo.avatar_url} alt="" class="h-50 w-50 rounded-full">
<div class="flex-1 space-y-1">
<div class="pt-10 flex items-center justify-between">
<p class="text-gray-900">
<strong>Language: </strong>
</p>
<p><%= @repo.language %></p>
</div>
name: Check Format
on: pull_request
jobs:
check_format:
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.13]
[
verbose: false,
private: false,
skip: false,
router: "",
exit: "false",
format: "txt",
out: "",
threshold: "high",
ignore: ["Config.CSP", "Config.HTTPS"],
%{
configs: [
%{
name: "default",
files: %{
included: ~w{config lib test}
},
strict: true,
color: true,
checks: [
name: Check Security
on: pull_request
jobs:
check_security:
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.13]
name: Check Lint
on: pull_request
jobs:
check_lint:
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.13]
name: Dialyzer
on: pull_request
jobs:
check_security:
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.13]