Skip to content

Bump ex_doc from 0.35.1 to 0.36.1 #96

Bump ex_doc from 0.35.1 to 0.36.1

Bump ex_doc from 0.35.1 to 0.36.1 #96

Workflow file for this run

name: Benchmarking
on:
push:
branches:
- main
pull_request:
jobs:
bench:
strategy:
matrix:
script_file:
- "bench.binary.exs"
- "bench.stream.exs"
- "bench.encoder.exs"
runs-on: ubuntu-latest
defaults:
run:
working-directory: bench
name: ${{ matrix.script_file }}
steps:
- uses: actions/checkout@v4
- name: Setup Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: "1.17"
otp-version: "27"
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get
mix compile
- name: Benchmark
run: mix run ${{ matrix.script_file }}