Skip to content

Instantly share code, notes, and snippets.

@theguuholi
Created August 18, 2022 17:37
Show Gist options
  • Save theguuholi/69b6dfebb526f03d74cd44f351939570 to your computer and use it in GitHub Desktop.
Save theguuholi/69b6dfebb526f03d74cd44f351939570 to your computer and use it in GitHub Desktop.
name: Check Lint
on: pull_request
jobs:
check_lint:
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.13]
otp: [24]
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-lint-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-lint-cache.outputs.cache-hit != 'true'
run: mix deps.get
- name: Check LINT
run: mix credo --strict
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment