Skip to content
This repository was archived by the owner on Dec 24, 2025. It is now read-only.

Bump credo from 1.7.11 to 1.7.14 #19

Bump credo from 1.7.11 to 1.7.14

Bump credo from 1.7.11 to 1.7.14 #19

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Test
on:
workflow_call:
push:
branches:
- "main"
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: "1.18.2"
otp-version: "27.3.3"
- name: Restore dependencies cache
uses: actions/cache@v3
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test