Skip to content

fix cil

fix cil #32

Workflow file for this run

on: push
env:
OTP_VERSION: 24.0
ELIXIR_VERSION: 1.13.3
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
otp: ['20.3.8', '26.0.2']
elixir: ['1.8.2', '1.15.5']
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: echo 'JAVA=SCRIPT\nER=LANG' > .env
- run: mix deps.get
- run: mix test
- name: Elixir Hex, mix build Cache
uses: actions/cache@v2
id: mix-cache
with:
path: |
deps
_build
priv/plts
key: ${{ runner.os }}-${{ env.OTP_VERSION }}-${{ env.ELIXIR_VERSION }}-${{ hashFiles('mix.lock') }}