Skip to content

Bump hexpm/elixir from 1.15.5-erlang-26.0.2-debian-bookworm-20230612-slim to 1.17.0-erlang-27.0-debian-buster-20240612-slim #1158

Bump hexpm/elixir from 1.15.5-erlang-26.0.2-debian-bookworm-20230612-slim to 1.17.0-erlang-27.0-debian-buster-20240612-slim

Bump hexpm/elixir from 1.15.5-erlang-26.0.2-debian-bookworm-20230612-slim to 1.17.0-erlang-27.0-debian-buster-20240612-slim #1158

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- "**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
services:
db:
image: postgres:14
env:
POSTGRES_DB: elixir_boilerplate_test
POSTGRES_PASSWORD: development
ports: ["5432:5432"]
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
- uses: erlef/setup-beam@v1
id: setup-beam
with:
version-file: .tool-versions
version-type: strict
- uses: actions/cache@v3
with:
path: |
deps
_build
priv/plts
key: ${{ runner.os }}-mix-${{ steps.setup-beam.outputs.otp-version }}-${{ steps.setup-beam.outputs.elixir-version }}-${{ hashFiles(format('{0}/mix.lock', github.workspace)) }}
- uses: actions/setup-node@v3
with:
node-version-file: .tool-versions
cache: npm
- run: grep -v '^\(#.*\|\s\?\)$' .env.test >> $GITHUB_ENV
- run: make prepare
- run: make lint
- run: make check
- run: make build DOCKER_IMAGE_TAG=latest