Bump gen_erlang OTP version to 27 #332
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 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Elixir ${{ matrix.elixir }} / OTP ${{ matrix.erlang }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| elixir: ["1.13.4"] | |
| erlang: ["25.0.4"] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: "${{ matrix.erlang }}" | |
| elixir-version: "${{ matrix.elixir }}" | |
| - name: Install Dependencies | |
| run: | | |
| sudo apt-get update | |
| DEBIAN_FRONTEND=noninteractive sudo apt-get -y --no-install-recommends install build-essential cmake | |
| mix deps.get | |
| - run: mix test |