Skip to content

Release v2.10.3

Release v2.10.3 #320

Workflow file for this run

name: CI
on: push
jobs:
ci:
env:
MIX_ENV: test
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: '1.13'
otp: '24.3'
postgres: '12.13-alpine'
- pair:
elixir: '1.15'
otp: '26.0'
postgres: '15.3-alpine'
lint: lint
runs-on: ubuntu-20.04
services:
postgres:
image: postgres:${{matrix.pair.postgres}}
env:
POSTGRES_DB: oban_test
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432/tcp
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}
- uses: actions/cache@v4
with:
path: |
deps
_build
key: ${{ runner.os }}-mix-${{matrix.pair.elixir}}-${{matrix.pair.otp}}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-${{matrix.pair.elixir}}-${{matrix.pair.otp}}-
- name: Authorize with Oban
env:
OBAN_KEY_SHA: ${{secrets.oban_key_sha}}
OBAN_API_KEY: ${{secrets.oban_api_key}}
run: mix hex.repo add oban https://getoban.pro/repo --fetch-public-key SHA256:4/OSKi0NRF91QVVXlGAhb/BIMLnK8NHcx/EWs+aIWPc --auth-key $OBAN_API_KEY
- name: Seed fake assets
run: mkdir -p priv/static && touch priv/static/app.css && touch priv/static/app.js
- name: Run mix deps.get
run: mix deps.get
- name: Run mix format
run: mix format --check-formatted
if: ${{ matrix.lint }}
- name: Run mix deps.compile
run: mix deps.compile
- name: Run mix compile
run: mix compile --warnings-as-errors
if: ${{ matrix.lint }}
- name: Run credo
run: mix credo --strict
if: ${{ matrix.lint }}
- name: Run mix ecto.migrate
env:
DATABASE_URL: postgresql://postgres:postgres@localhost:${{job.services.postgres.ports[5432]}}/oban_test
run: mix test.setup
- name: Run mix test
env:
DATABASE_URL: postgresql://postgres:postgres@localhost:${{job.services.postgres.ports[5432]}}/oban_test
run: mix test