Bump ex_doc from 0.34.0 to 0.34.1 #76
This file contains 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: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build and test | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
elixir: ["1.15.0", "1.16.0"] | |
otp: ["25.3.2", "26.2.5"] | |
include: | |
- elixir: "1.17.0" | |
otp: "27.0" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
elixir-version: ${{matrix.elixir}} | |
- name: Restore dependencies cache | |
uses: actions/cache@v4 | |
with: | |
path: deps | |
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }} | |
restore-keys: ${{ runner.os }}-mix- | |
- name: Install dependencies | |
run: mix deps.get --check-locked | |
- name: Compile | |
run: mix compile --warnings-as-errors | |
- name: Credo check | |
run: mix credo --strict | |
- name: Format check | |
run: mix format | |
- name: Mix Audit check | |
run: mix deps.audit | |
- name: Run tests | |
run: mix test |