Skip to content

GenerateDataKeyWithoutPlaintext now does not send KeySpec when sending NumberOfBytes #21

GenerateDataKeyWithoutPlaintext now does not send KeySpec when sending NumberOfBytes

GenerateDataKeyWithoutPlaintext now does not send KeySpec when sending NumberOfBytes #21

Workflow file for this run

name: on-push
on: [push, pull_request]
env:
MIX_ENV: test
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
include:
- pair:
otp: 27.x
elixir: 1.17.x
- pair:
otp: 26.x
elixir: 1.16.x
- pair:
otp: 26.x
elixir: 1.15.x
- pair:
otp: 25.x
elixir: 1.15.x
- pair:
otp: 25.x
elixir: 1.14.x
- pair:
otp: 25.x
elixir: 1.13.x
- pair:
otp: 24.x
elixir: 1.15.x
- pair:
otp: 24.x
elixir: 1.14.x
- pair:
otp: 24.x
elixir: 1.13.x
- pair:
otp: 24.x
elixir: 1.12.x
- pair:
otp: 23.x
elixir: 1.14.x
- pair:
otp: 23.x
elixir: 1.13.x
- pair:
otp: 23.x
elixir: 1.12.x
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}
- run: mix deps.get
- run: mix compile
- run: mix format --check-formatted
if: matrix.pair.elixir == '1.17.x' # Check formatting only with the latest verison
- run: mix dialyzer
if: matrix.pair.elixir == '1.17.x' # Run dialyzer only with the latest verison
- run: mix test