Skip to content

Build full response when streaming #15

Build full response when streaming

Build full response when streaming #15

Workflow file for this run

name: Elixir CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ['24.x', '25.x', '26.x']
elixir: ['1.13.4', '1.14.5', '1.15.7']
exclude:
- otp: '26.x'
elixir: '1.13.4'
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix test