Helpers for using SQL views with Ecto
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Define Spindle workflow for Elixir testing

+20
+20
.tangled/workflows/elixir.yml
··· 1 + when: 2 + - when: ["push", "manual"] 3 + branch: ["*"] 4 + 5 + engine: nixery 6 + 7 + dependencies: 8 + nixpkgs: 9 + - elixir 10 + 11 + environment: 12 + MIX_ENV: test 13 + 14 + steps: 15 + - name: Fetch dependencies 16 + command: mix deps.get 17 + - name: Build dependencies 18 + command: mix deps.build 19 + - name: Run ExUnit 20 + command: mix test