Skip to content

Bump version to 0.4.0 #2

Bump version to 0.4.0

Bump version to 0.4.0 #2

Workflow file for this run

name: Numero CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
name: Run tests
runs-on: ubuntu-22.04
env:
MIX_ENV: test
strategy:
matrix:
otp: ['25.x', '26.x']
elixir: ['1.14', '1.15']
steps:
- uses: actions/checkout@v2
- 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