[ci][deps] Support Elixir 1.17 / OTP 27 #38
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: Torch Scrivener.Ecto Tests | |
on: | |
pull_request: | |
branches: [master, main] | |
types: [opened, edited, reopened, synchronize] | |
push: | |
branches: [master, main] | |
tags: | |
- v[2-9].[0-9]+.[0-9]+ | |
jobs: | |
test: | |
name: mix test (Elixir ${{matrix.elixir}} | OTP ${{matrix.otp}}) | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- elixir: 1.14.x | |
otp: 23.x | |
- elixir: 1.14.x | |
otp: 24.x | |
- elixir: 1.14.x | |
otp: 25.x | |
- elixir: 1.15.x | |
otp: 24.x | |
- elixir: 1.15.x | |
otp: 25.x | |
- elixir: 1.15.x | |
otp: 26.x | |
- elixir: 1.16.x | |
otp: 24.x | |
- elixir: 1.16.x | |
otp: 25.x | |
- elixir: 1.16.x | |
otp: 26.x | |
- elixir: 1.17.x | |
otp: 25.x | |
- elixir: 1.17.x | |
otp: 26.x | |
- elixir: 1.17.x | |
otp: 27.x | |
services: | |
db: | |
image: postgres:latest | |
env: | |
POSTGRES_HOST_AUTH_METHOD: trust | |
ports: ["5432:5432"] | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
env: | |
MIX_ENV: test | |
ImageOS: ubuntu20 # run on ubuntu-20.04 (which supports Erlang/OTP 20-25) | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
elixir-version: ${{matrix.elixir}} | |
- name: Cache mix deps | |
uses: actions/cache@v4 | |
with: | |
path: | | |
deps | |
_build | |
key: deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} | |
restore-keys: | | |
deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}- | |
- name: Install hex deps | |
run: | | |
mix local.hex --force | |
mix local.rebar --force | |
- name: Install hex dependencies | |
run: mix deps.get --only test | |
- name: DB Reset | |
run: mix db.reset | |
- name: Mix Test | |
run: mix test | |
env: | |
MIX_ENV: test |