Skip to content

Commit

Permalink
elixir: Upgrade OTP
Browse files Browse the repository at this point in the history
The builds now run on Ubuntu 22.04. This means that OTP 22.2 is no longer available.

See:

https://github.com/erlef/setup-beam#compatibility-between-operating-system-and-erlangotp
  • Loading branch information
mpkorstanje committed Dec 17, 2022
1 parent be71fcb commit 12e9942
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/test-elixir.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: test-elixir

on:
push:
branches:
- main
- renovate/**
pull_request:
branches:
- main
workflow_call:

jobs:
test-elixir:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: '25'
elixir-version: '1.10.x'

- run: |
mix local.hex --force
mix deps.get
working-directory: elixir
- run: mix test
working-directory: elixir

- name: run acceptance tests
run: make acceptance
working-directory: elixir

0 comments on commit 12e9942

Please sign in to comment.