Skip to content

chore(deps): bump cowboy from 2.13.0 to 2.14.1 #111

chore(deps): bump cowboy from 2.13.0 to 2.14.1

chore(deps): bump cowboy from 2.13.0 to 2.14.1 #111

Workflow file for this run

name: CI
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
workflow:
name: Workflow
runs-on: ubuntu-latest
env:
MIX_ENV: test
strategy:
fail-fast: true
matrix:
include:
- pair:
elixir: 1.14.x
otp: 25.x
- pair:
elixir: 1.15.x
otp: 26.x
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.pair.elixir }}
otp-version: ${{ matrix.pair.otp }}
- name: Get deps
run: mix deps.get
- name: Compile deps
run: mix deps.compile
- name: Check unused deps
run: mix deps.unlock --check-unused
- name: Compile
run: mix compile --force --warnings-as-errors
- name: Check format
run: mix format --check-formatted
- name: Run tests
run: mix test --trace