Skip to content

- Added api to return booked car #42

- Added api to return booked car

- Added api to return booked car #42

Workflow file for this run

name: Dialyzer
on: pull_request
jobs:
check_security:
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.14]
otp: [26]
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-elixir@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- uses: actions/cache@v1
id: mix-dialyzer-cache
with:
path: deps
key:
${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{
hashFiles(format('{0}-{1}', github.workspace, '/mix.lock')) }}
- name: Install Mix Dependencies
if: steps.mix-dialyzer-cache.outputs.cache-hit != 'true'
run: mix deps.get
- name: Dialyzer
run: mix dialyzer