Fix JSON formatter hanging forever #186
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test Escript Build | |
| on: | |
| push: | |
| paths: | |
| - ".github/**" | |
| - "exercism_test_helper/**" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| container: | |
| image: hexpm/elixir:1.19.2-erlang-28.1-debian-bookworm-20251103 | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - name: Install Dependencies | |
| run: | | |
| cd exercism_test_helper | |
| mix local.rebar --force | |
| mix local.hex --force | |
| mix deps.get | |
| - name: Run Tests | |
| run: | | |
| cd exercism_test_helper | |
| mix test |