Skip to content

Instantly share code, notes, and snippets.

View theguuholi's full-sized avatar
😃

Gustavo theguuholi

😃
View GitHub Profile
name: Gigalixir CD
on:
push:
branches:
- main
jobs:
deploy:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
export ZSH="/Users/gustavooliveira/.oh-my-zsh"
ZSH_THEME="spaceship"
plugins=(
git
docker
elixir
gcloud
helm
// 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": {
name: Tests
on: pull_request
jobs:
check_security:
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]
name: Check Lint
on: pull_request
jobs:
check_lint:
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.13]
name: Check Security
on: pull_request
jobs:
check_security:
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.13]
%{
configs: [
%{
name: "default",
files: %{
included: ~w{config lib test}
},
strict: true,
color: true,
checks: [
[
verbose: false,
private: false,
skip: false,
router: "",
exit: "false",
format: "txt",
out: "",
threshold: "high",
ignore: ["Config.CSP", "Config.HTTPS"],
name: Check Format
on: pull_request
jobs:
check_format:
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.13]