Skip to content

Catch translate_zip_error when code is :eisdir (#18) #78

Catch translate_zip_error when code is :eisdir (#18)

Catch translate_zip_error when code is :eisdir (#18) #78

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ["22", "23", "24"]
elixir: ["1.10.4", "1.11.4", "1.12.3", "1.13.4"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-elixir@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
experimental-otp: true
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test
- name: Check format
run: mix format --check-formatted
- name: Check quality
run: mix credo --all --strict || true