Fix Ecto.Enum support for Ecto 3.12 #35
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
elixir-version: [1.12.x, 1.11.x, 1.10.x, 1.9.x, 1.8.x] | |
include: | |
- elixir-version: 1.12.x | |
otp-version: 24.x | |
- elixir-version: 1.11.x | |
otp-version: 23.x | |
- elixir-version: 1.10.x | |
otp-version: 22.x | |
- elixir-version: 1.9.x | |
otp-version: 21.x | |
- elixir-version: 1.8.x | |
otp-version: 20.x | |
env: | |
MIX_ENV: test | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{ matrix.otp-version }} | |
elixir-version: ${{ matrix.elixir-version }} | |
- run: make dependencies | |
- run: make lint | |
- run: make test | |
- run: mix coveralls.github | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: mix hex.publish --dry-run | |
env: | |
HEX_API_KEY: DRYRUN |