Skip to content

Add cright doc for simple_hash function #263

Add cright doc for simple_hash function

Add cright doc for simple_hash function #263

Workflow file for this run

name: MishkaDeveloperTools CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
env:
GITHUB_ACTION: true
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: "1.15.7"
otp: "26.2.1"
postgres: "14.1-alpine"
runs-on: ubuntu-latest
services:
postgres:
image: postgres:${{matrix.pair.postgres}}
env:
POSTGRES_DB: mishka_test
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432/tcp
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}
- name: Elixir and Erlang Dependencies
run: |
mix local.hex --force
mix local.rebar --force
- name: Source Compiling
env:
DATABASE_DEVELOPERT_URL: postgresql://postgres:postgres@localhost:${{job.services.postgres.ports[5432]}}/mishka_developer_tools_test
run: |
mix deps.get
mix deps.compile
- name: Run test with temporary information
env:
DATABASE_DEVELOPERT_URL: postgresql://postgres:postgres@localhost:${{job.services.postgres.ports[5432]}}/mishka_developer_tools_test
run: |
mix dialyzer
mix test --trace