Skip to content

chore(deps): update dependency swoosh to v1.26.3 #888

chore(deps): update dependency swoosh to v1.26.3

chore(deps): update dependency swoosh to v1.26.3 #888

Workflow file for this run

name: Server CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
fail-fast: false
matrix:
include:
# Minimum supported (per mix.exs: "~> 1.16")
- otp: '26.2'
elixir: '1.16.0'
- otp: '26.2'
elixir: '1.16.2'
- otp: '26.2'
elixir: '1.16.3'
# Latest stable on latest OTP
- otp: '28.2'
elixir: '1.19.3'
services:
db:
image: postgres:latest
ports: ['5432:5432']
env:
POSTGRES_DB: lynx_dev
POSTGRES_USER: lynx
POSTGRES_PASSWORD: lynx
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v6
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Get Dependencies
run: make deps
- name: Check Lynx Format
run: make fmt_check
- name: Get Version
run: make v
- name: Test Lynx
run: make ci
- name: Build Lynx
run: make build