Skip to content

Prepare to release v0.04 and publish to Hex #89

Prepare to release v0.04 and publish to Hex

Prepare to release v0.04 and publish to Hex #89

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
MIX_ENV: test
strategy:
matrix:
elixir: ["1.12.3", "1.13.4", "1.14.3"]
otp: ["24.3.4"]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Elixir Project
uses: ./.github/actions/elixir-setup
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
build-flags: --all-warnings --warnings-as-errors
- name: Run tests
run: mix test --warnings-as-errors
shell: sh