Add changelog and refresh hex package metadata #35
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: Elixir CI | |
| on: | |
| push: | |
| pull_request: | |
| branches: [ master ] | |
| env: | |
| MIX_ENV: test | |
| jobs: | |
| deps: | |
| name: Install Dependencies | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| elixir: [1.15] | |
| otp: [26] | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: setup | |
| uses: erlef/setup-beam@v1 | |
| with: | |
| elixir-version: ${{ matrix.elixir }} | |
| otp-version: ${{ matrix.otp }} | |
| - name: Retrieve Cached Dependencies | |
| uses: actions/cache@v4 | |
| id: mix-cache | |
| with: | |
| path: | | |
| deps | |
| _build | |
| priv/plts | |
| key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('mix.lock') }} | |
| - name: Install deps | |
| if: steps.mix-cache.outputs.cache-hit != 'true' | |
| run: | | |
| mkdir -p priv/plts | |
| mix local.rebar --force | |
| mix local.hex --force | |
| mix deps.get | |
| mix deps.compile | |
| mix dialyzer --plt | |
| analyze: | |
| name: Analysis | |
| needs: deps | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| elixir: [1.15] | |
| otp: [26] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup elixir | |
| uses: erlef/setup-beam@v1 | |
| with: | |
| elixir-version: ${{ matrix.elixir }} | |
| otp-version: ${{ matrix.otp }} | |
| - name: Retrieve Cached Dependencies | |
| uses: actions/cache@v4 | |
| id: mix-cache | |
| with: | |
| path: | | |
| deps | |
| _build | |
| priv/plts | |
| key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('mix.lock') }} | |
| - name: Run Credo | |
| run: mix credo | |
| - name: Run Dialyzer | |
| run: mix dialyzer --no-check --halt-exit-status | |
| tests: | |
| name: Tests | |
| needs: deps | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| elixir: [1.15] | |
| otp: [26] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: erlef/setup-beam@v1 | |
| with: | |
| elixir-version: ${{ matrix.elixir }} | |
| otp-version: ${{ matrix.otp }} | |
| - name: Retrieve Cached Dependencies | |
| uses: actions/cache@v4 | |
| id: mix-cache | |
| with: | |
| path: | | |
| deps | |
| _build | |
| priv/plts | |
| key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('mix.lock') }} | |
| - name: Run Tests | |
| run: mix test |