Skip to content

Allow uniqueness limited to insertion states #2343

Allow uniqueness limited to insertion states

Allow uniqueness limited to insertion states #2343

Workflow file for this run

name: ci
on:
push:
branches:
- main
paths-ignore:
- "guides/**"
pull_request:
paths-ignore:
- "guides/**"
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
ci:
env:
MIX_ENV: test
MYSQL_URL: mysql://root@localhost:3306/oban_test
POSTGRES_URL: postgresql://postgres:postgres@localhost:5432/oban_test
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: "1.16"
otp: "25.3"
mysql: "8.4"
postgres: "14.22-alpine"
exclude_tags: "lite"
- pair:
elixir: "1.20"
otp: "29.0"
mysql: "9.1"
postgres: "18.3-alpine"
exclude_tags: "gossip"
lint: lint
runs-on: ubuntu-24.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:5432
mysql:
image: mysql:${{matrix.pair.mysql}}
env:
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 3306:3306
steps:
- uses: actions/checkout@v7
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}
- uses: actions/cache@v6
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: Run mix deps.get
run: mix deps.get --only test
- name: Run mix format
run: mix format --check-formatted
if: ${{ matrix.lint }}
- name: Run mix deps.unlock
run: mix deps.unlock --check-unused
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
run: mix test.setup
- name: Run mix test
run: mix test --exclude ${{ matrix.exclude_tags }} || mix test --failed
- name: Run dialyzer
run: mix dialyzer
if: ${{ matrix.lint }}