๐Ÿ€ ATproto library for gleam
atproto library gleam
34

Configure Feed

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

ci: only run tests when source code is updated

kacaii.dev (Jul 2, 2026, 12:17 PM -0300) ec48ea13 6b4f8153

+6 -3
+6 -3
.tangled/workflows/test.yml
··· 1 1 when: 2 2 - event: ["push", "pull_request"] 3 3 branch: ["main"] 4 + paths: 5 + - src/**.gleam 6 + - test/**.gleam 4 7 5 8 engine: microvm 6 9 image: nixos 7 10 8 11 registry: 9 - nixpkgs: github:nixos/nixpkgs/nixos-unstable 12 + nixpkgs: "github:nixos/nixpkgs/nixos-unstable" 10 13 11 14 dependencies: 12 15 - beamMinimal29Packages.erlang ··· 14 17 - gleam 15 18 16 19 steps: 17 - - name: check format 20 + - name: "check format" 18 21 command: gleam format --check 19 22 20 - - name: run unit tests 23 + - name: "run unit tests" 21 24 command: gleam test