Update changelog #106
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: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Elixir ${{matrix.elixir}} / OTP ${{matrix.otp}} | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres | |
ports: | |
- 5432:5432 | |
env: | |
POSTGRES_DB: dataloader_test | |
POSTGRES_PASSWORD: postgres | |
strategy: | |
matrix: | |
elixir: | |
- '1.13' | |
- '1.14' | |
otp: | |
- '24' | |
- '25' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: ${{ matrix.elixir }} | |
otp-version: ${{ matrix.otp }} | |
- name: Restore deps cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
deps | |
_build | |
key: deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}-git-${{ github.sha }} | |
restore-keys: | | |
deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} | |
deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }} | |
- name: Create dializer plts path | |
run: mkdir -p priv/plts | |
- name: Restore plts cache | |
uses: actions/cache@v3 | |
with: | |
path: priv/plts | |
key: plts-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}-${{ github.sha }} | |
restore-keys: | | |
plts-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} | |
plts-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }} | |
- name: Install package dependencies | |
run: mix deps.get | |
- name: Check code format | |
run: mix format --check-formatted | |
- name: Compile dependencies | |
run: mix compile | |
env: | |
MIX_ENV: test | |
- name: Run unit tests | |
run: | | |
mix ecto.setup | |
mix test | |
env: | |
MIX_ENV: test | |
- name: Run dialyzer | |
run: mix dialyzer |