Gleam CLI client for Tangled (clone of aly.codes/tg)
0

Configure Feed

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

gtg / .github / workflows / test.yml
441 B 23 lines
1name: test 2 3on: 4 push: 5 branches: 6 - master 7 - main 8 pull_request: 9 10jobs: 11 test: 12 runs-on: ubuntu-latest 13 steps: 14 - uses: actions/checkout@v6 15 - uses: erlef/setup-beam@v1 16 with: 17 otp-version: "29" 18 gleam-version: "1.17.0" 19 rebar3-version: "3" 20 # elixir-version: "1" 21 - run: gleam deps download 22 - run: gleam test 23 - run: gleam format --check src test