Fix implementation-defined stdout/stderr handling. #29
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: Build and Load | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt update && sudo apt install libboost-system-dev | |
| bash < <(curl -s https://raw.githubusercontent.com/babashka/babashka/master/install) | |
| - name: Install jank | |
| run: | | |
| curl -s "https://jank-lang.github.io/ppa/KEY.gpg" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/jank.gpg >/dev/null | |
| sudo curl -s -o /etc/apt/sources.list.d/jank.list "https://jank-lang.github.io/ppa/jank.list" | |
| sudo apt update | |
| sudo apt install -y jank | |
| - name: Load jank code | |
| run: | | |
| echo "(require 'nrepl_server.core)" | bb run repl |