fix(con cache): allow concache to accept ets options #112
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Credo | |
| on: push | |
| jobs: | |
| Credo: | |
| runs-on: ubuntu-latest | |
| env: | |
| MIX_ENV: test | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Elixir | |
| uses: erlef/setup-beam@v1 | |
| with: | |
| elixir-version: '1.14.1' # Define the elixir version [required] | |
| otp-version: '25.1.2' # Define the OTP version [required] | |
| - name: Restore dependencies cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| _build | |
| deps | |
| key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('./.tool-versions') }} | |
| restore-keys: ${{ runner.os }}-mix- | |
| - name: Install Dependencies | |
| run: mix deps.get | |
| - name: Compile Project | |
| run: mix compile | |
| - name: Run Credo | |
| run: mix credo |