[203] Removed Jason decoding exception for github release code #762
Workflow file for this run
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: Deployex CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| env: | |
| MIX_ENV: test | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| SHELL: /usr/bin/bash | |
| jobs: | |
| setup: | |
| name: Setup | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup BEAM | |
| uses: erlef/setup-beam@v1 | |
| with: | |
| version-file: .tool-versions | |
| version-type: strict | |
| - name: Cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| _build | |
| deps | |
| key: | | |
| deployex-${{ hashFiles('.tool-versions') }}-${{ hashFiles('mix.lock') }}-2024-05-10 | |
| restore-keys: | | |
| deployex- | |
| - name: Install Elixir dependencies | |
| run: mix do deps.get + compile --warnings-as-errors | |
| test: | |
| name: Test | |
| needs: setup | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup BEAM | |
| uses: erlef/setup-beam@v1 | |
| with: | |
| version-file: .tool-versions | |
| version-type: strict | |
| - name: Cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| _build | |
| deps | |
| key: | | |
| deployex-${{ hashFiles('.tool-versions') }}-${{ hashFiles('mix.lock') }}-2024-05-10 | |
| restore-keys: | | |
| deployex- | |
| - name: Run tests | |
| run: mix test --cover --warnings-as-errors | |
| analysis: | |
| name: Static Analysis | |
| needs: setup | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup BEAM | |
| uses: erlef/setup-beam@v1 | |
| with: | |
| version-file: .tool-versions | |
| version-type: strict | |
| - name: Cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| _build | |
| deps | |
| key: | | |
| deployex-${{ hashFiles('.tool-versions') }}-${{ hashFiles('mix.lock') }}-2024-05-10 | |
| restore-keys: | | |
| deployex- | |
| - name: Install Elixir dependencies | |
| run: mix do deps.get + compile --warnings-as-errors | |
| - name: Run mix deps.unlock | |
| run: mix deps.unlock --check-unused | |
| - name: Credo | |
| run: mix credo --strict | |
| - name: Ex Doc | |
| run: mix docs --failed | |
| - name: Mix Audit | |
| run: mix deps.audit | |
| - name: Mix Sobelow | |
| run: mix sobelow -r apps/deployex_web --exit --threshold medium --skip -i Config.HTTPS | |
| - name: Formatted | |
| run: mix format --check-formatted | |
| - name: Restore PLT cache | |
| uses: actions/cache@v4 | |
| id: plt_cache | |
| with: | |
| key: plt-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('**/*.ex') }} | |
| restore-keys: | | |
| plt-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('**/*.ex') }} | |
| plt-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }}- | |
| plt-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}- | |
| plt-${{ steps.beam.outputs.otp-version }}- | |
| path: priv/plts | |
| - name: Create PLTs | |
| if: steps.plt_cache.outputs.cache-hit != 'true' || github.run_attempt != '1' | |
| run: mix dialyzer --plt | |
| - name: Run Dialyzer | |
| run: mix dialyzer --format github |