Skip to content

chore(deps): update dependency erlang to v27.1.2 #824

chore(deps): update dependency erlang to v27.1.2

chore(deps): update dependency erlang to v27.1.2 #824

Workflow file for this run

name: website
on:
push:
branches:
- main
pull_request:
concurrency:
group: website-${{ github.head_ref }}
cancel-in-progress: true
env:
DEBUG: 1
OTP_VERSION: 26.1.2
ELIXIR_VERSION: 1.15.6
MIX_ENV: test
jobs:
test:
name: Test
runs-on: 'ubuntu-latest'
timeout-minutes: 15
services:
db:
image: postgres:16
ports: ['5432:5432']
env:
POSTGRES_PASSWORD: postgres
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- uses: jdx/mise-action@v2
- name: Restore Cache
uses: actions/cache@v4
id: mix-cache
with:
path: |
deps
_build
_site
key: mix-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ hashFiles('mix.lock') }}
- run: mix deps.get
- run: mix test