Skip to content

Fix deprecated File.stream!(file, options, line_or_bytes) #54

Fix deprecated File.stream!(file, options, line_or_bytes)

Fix deprecated File.stream!(file, options, line_or_bytes) #54

Workflow file for this run

on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
include:
- elixir: 1.16.x
otp: 26.x
- elixir: 1.15.x
otp: 26.x
- elixir: 1.14.x
otp: 25.x
check_formatted: true
- elixir: 1.13.x
otp: 24.x
- elixir: 1.12.x
otp: 24.x
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- name: Check Formatting
run: mix format --check-formatted
if: matrix.check_formatted
- run: mix test