Skip to content

allow_to_return_raw_or_keyword_list #11

allow_to_return_raw_or_keyword_list

allow_to_return_raw_or_keyword_list #11

Workflow file for this run

name: AyeSQL Checks
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
MIX_ENV: test
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.13.0]
otp: [24.1.7]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-elixir@v1
name: "Setup Elixir"
with:
experimental-otp: true
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- name: "Get dependencies"
run: mix do local.rebar --force, local.hex --force, deps.get
- name: "Compile dependencies"
run: mix deps.compile
- name: "Compile project"
run: mix compile --warnings-as-errors
- name: "Check formatting"
run: mix format --dry-run --check-formatted
- name: "Run tests with coverage"
run: mix coveralls.github
- name: "Run Credo"
run: mix credo