Fix bridge crash on invalid pid #36
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: "CI" | |
| on: ["push", "pull_request"] | |
| jobs: | |
| test_and_build: | |
| name: "Build mix release" | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: Setup elixir | |
| uses: erlef/setup-beam@v1 | |
| with: | |
| elixir-version: "1.16.3" | |
| otp-version: "26.2.5.6" | |
| version-type: "strict" | |
| - run: | | |
| sudo apt-get update | |
| sudo apt-get install inotify-tools | |
| - uses: actions/checkout@v1 | |
| - run: | | |
| mix local.hex --force | |
| mix local.rebar --force | |
| mix deps.get | |
| mix lint |