Skip to content

Update Copyright year 2026 #33

Update Copyright year 2026

Update Copyright year 2026 #33

Workflow file for this run

on:
workflow_dispatch:
push:
paths:
- 'impl/elixir/**'
- '.github/workflows/elixir.yml'
pull_request:
paths:
- 'impl/elixir/**'
- '.github/workflows/elixir.yml'
defaults:
run:
working-directory: ./impl/elixir
jobs:
elixir-dev:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: '28.0'
elixir-version: '1.18'
- run: mix deps.get
- run: mix test
- run: mix docs
- run: mix hex.build
- run: mix format --check-formatted
elixir:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: '24.2'
elixir-version: '1.12'
- run: mix test