Add ci/cd pipeline setup #3
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: | |
pull_request: | |
workflow_call: | |
jobs: | |
lint: | |
runs-on: ubuntu-24.04 | |
env: | |
MIX_ENV: test | |
strategy: | |
matrix: | |
elixir: [1.18.x] | |
otp: [27.x] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Elixir | |
uses: erlef/[email protected] | |
with: | |
elixir-version: ${{ matrix.elixir }} | |
otp-version: ${{ matrix.otp }} | |
- name: Cache Elixir deps | |
uses: actions/cache@v4 | |
id: deps-cache | |
with: | |
path: deps | |
key: ${{ runner.os }}-mix-${{ env.MIX_ENV }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
- name: Cache Elixir _build | |
uses: actions/cache@v4 | |
id: build-cache | |
with: | |
path: _build | |
key: ${{ runner.os }}-build-${{ env.MIX_ENV }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
- name: Install deps | |
if: steps.deps-cache.outputs.cache-hit != 'true' | |
run: | | |
mix local.rebar --force | |
mix local.hex --force | |
mix deps.get --only ${{ env.MIX_ENV }} | |
- name: Compile deps | |
if: steps.build-cache.outputs.cache-hit != 'true' | |
run: mix deps.compile --warnings-as-errors | |
- name: Clean build | |
run: mix clean | |
- name: Check code formatting | |
run: mix format --check-formatted | |
- name: Run Credo | |
run: mix credo --strict | |
static-analysis: | |
runs-on: ubuntu-24.04 | |
env: | |
MIX_ENV: test | |
strategy: | |
matrix: | |
elixir: [1.18.x] | |
otp: [27.x] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Elixir | |
uses: erlef/[email protected] | |
with: | |
elixir-version: ${{ matrix.elixir }} | |
otp-version: ${{ matrix.otp }} | |
- name: Cache Elixir deps | |
uses: actions/cache@v4 | |
id: deps-cache | |
with: | |
path: deps | |
key: ${{ runner.os }}-mix-${{ env.MIX_ENV }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
- name: Cache Elixir _build | |
uses: actions/cache@v4 | |
id: build-cache | |
with: | |
path: _build | |
key: ${{ runner.os }}-build-${{ env.MIX_ENV }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
- name: Install deps | |
if: steps.deps-cache.outputs.cache-hit != 'true' | |
run: | | |
mix local.rebar --force | |
mix local.hex --force | |
mix deps.get --only ${{ env.MIX_ENV }} | |
- name: Compile deps | |
if: steps.build-cache.outputs.cache-hit != 'true' | |
run: mix deps.compile --warnings-as-errors | |
# Don't cache PLTs based on mix.lock hash, as Dialyzer can incrementally update even old ones | |
# Cache key based on Elixir & Erlang version (also useful when running in matrix) | |
- name: Restore PLT cache | |
uses: actions/cache/restore@v4 | |
id: plt_cache | |
with: | |
key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-plt | |
restore-keys: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-plt | |
path: priv/plts | |
# Create PLTs if no cache was found | |
- name: Create PLTs | |
if: steps.plt_cache.outputs.cache-hit != 'true' | |
run: mix dialyzer --plt | |
- name: Save PLT cache | |
uses: actions/cache/save@v4 | |
if: steps.plt_cache.outputs.cache-hit != 'true' | |
id: plt_cache_save | |
with: | |
key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-plt | |
path: priv/plts | |
- name: Run dialyzer | |
run: mix dialyzer --format github | |
test: | |
runs-on: ubuntu-24.04 | |
needs: [lint, static-analysis] | |
env: | |
MIX_ENV: test | |
# PostgreSQL configuration in environment variables | |
PGHOST: localhost | |
PGUSER: postgres | |
PGPASSWORD: postgres | |
PGDATABASE: pagination_ex_test | |
PGPORT: 5432 | |
# PostgreSQL service that will run alongside the tests | |
services: | |
postgres: | |
image: postgres:14 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: pagination_ex_test | |
ports: | |
- 5432:5432 | |
# Options to ensure PostgreSQL is ready | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
strategy: | |
matrix: | |
elixir: [1.18.x] | |
otp: [27.x] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Elixir | |
uses: erlef/[email protected] | |
with: | |
elixir-version: ${{ matrix.elixir }} | |
otp-version: ${{ matrix.otp }} | |
- name: Cache Elixir deps | |
uses: actions/cache@v4 | |
id: deps-cache | |
with: | |
path: deps | |
key: ${{ runner.os }}-mix-${{ env.MIX_ENV }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
- name: Cache Elixir _build | |
uses: actions/cache@v4 | |
id: build-cache | |
with: | |
path: _build | |
key: ${{ runner.os }}-build-${{ env.MIX_ENV }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
- name: Install deps | |
if: steps.deps-cache.outputs.cache-hit != 'true' | |
run: | | |
mix local.rebar --force | |
mix local.hex --force | |
mix deps.get --only ${{ env.MIX_ENV }} | |
- name: Compile deps | |
if: steps.build-cache.outputs.cache-hit != 'true' | |
run: mix deps.compile --warnings-as-errors | |
- name: Clean build | |
run: mix clean | |
# Create tables for testing if necessary | |
- name: Setup database | |
run: | | |
mix ecto.create | |
mix ecto.migrate | |
- name: Run tests | |
run: mix test |