An Elixir toolkit for the AT Protocol. hexdocs.pm/atex
elixir bluesky atproto decentralization
25
fork

Configure Feed

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

ci: add GitHub actions

+21
+21
.github/workflows/push.yaml
··· 1 + name: Push 2 + on: 3 + push: 4 + branches: 5 + - main 6 + 7 + jobs: 8 + docker: 9 + name: Lint and test 10 + runs-on: ubuntu-latest 11 + 12 + steps: 13 + - uses: actions/checkout@v4 14 + 15 + - name: Install Nix 16 + uses: nixbuild/nix-quick-install-action@v30 17 + 18 + - run: nix flake check 19 + - run: nix develop --command mix deps.get 20 + - run: nix develop --command mix credo 21 + - run: nix develop --command mix test