This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gigalixir CD | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export ZSH="/Users/gustavooliveira/.oh-my-zsh" | |
ZSH_THEME="spaceship" | |
plugins=( | |
git | |
docker | |
elixir | |
gcloud | |
helm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 20230518173256 | |
// https://gist.githubusercontent.com/theguuholi/0a8d3c8ca651f0fe737e10d53415eb20/raw/5a7e49e9c0a7b88b8449639e620d92dde435e5e6/vscode-settings.json | |
{ | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"emmet.includeLanguages": { | |
"html-eex": "html" | |
}, | |
"files.associations": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: pull_request | |
jobs: | |
check_security: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
elixir: [1.13] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dialyzer | |
on: pull_request | |
jobs: | |
check_security: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
elixir: [1.13] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Lint | |
on: pull_request | |
jobs: | |
check_lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
elixir: [1.13] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Security | |
on: pull_request | |
jobs: | |
check_security: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
elixir: [1.13] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%{ | |
configs: [ | |
%{ | |
name: "default", | |
files: %{ | |
included: ~w{config lib test} | |
}, | |
strict: true, | |
color: true, | |
checks: [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
verbose: false, | |
private: false, | |
skip: false, | |
router: "", | |
exit: "false", | |
format: "txt", | |
out: "", | |
threshold: "high", | |
ignore: ["Config.CSP", "Config.HTTPS"], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Format | |
on: pull_request | |
jobs: | |
check_format: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
elixir: [1.13] |
NewerOlder