diff --git a/.github/workflows/erlang.yml b/.github/workflows/erlang.yml index ebdedf4..17991f9 100644 --- a/.github/workflows/erlang.yml +++ b/.github/workflows/erlang.yml @@ -12,7 +12,6 @@ on: - nhse-develop-3.2 - nhse-develop-3.4 - jobs: build: @@ -20,9 +19,6 @@ jobs: name: Test on ${{ matrix.os }} with OTP ${{ matrix.otp }} runs-on: ${{ matrix.os }} - container: - image: erlang:${{matrix.otp}} - strategy: fail-fast: false matrix: @@ -30,7 +26,12 @@ jobs: os: [ubuntu-latest] steps: + - uses: lukka/get-cmake@latest - uses: actions/checkout@v4 + - name: Install Erlang/OTP + uses: erlef/setup-beam@v1 + with: + otp-version: ${{ matrix.otp }} - name: Compile run: ./rebar3 compile - name: Run xref and dialyzer