Skip to content

chore: bump Goth to 1.4.2, version to 0.2.2 and elixir versioN #69

chore: bump Goth to 1.4.2, version to 0.2.2 and elixir versioN

chore: bump Goth to 1.4.2, version to 0.2.2 and elixir versioN #69

Workflow file for this run

name: Elixir CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build and test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Elixir
uses: erlef/[email protected]
with:
elixir-version: '1.15.4' # Define the elixir version [required]
otp-version: '25' # Define the OTP version [required]
- name: Restore dependencies cache
uses: actions/cache@v2
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test
- name: Run dialyzer
run: mix dialyzer