Skip to content

Remove nanoid from dependency. #23

Remove nanoid from dependency.

Remove nanoid from dependency. #23

Workflow file for this run

name: CI
on: [push, pull_request]
env:
CACHE_VERSION: 1
jobs:
test:
runs-on: ubuntu-20.04
name: OTP ${{ matrix.otp }} - Elixir ${{ matrix.elixir }}
env:
MIX_ENV: "test"
ELIXIR_VERSION: ${{ matrix.elixir }}
OTP_VERSION: ${{ matrix.otp }}
strategy:
fail-fast: false
matrix:
otp: ["23", "24", "25"]
elixir: ["1.13.4", "1.14.4"]
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Setup OTP and Elixir
uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Install Dependencies
run: mix deps.get
- name: Run Tests
run: mix test