Skip to content

docs: update deps in basic-usage notebook #42

docs: update deps in basic-usage notebook

docs: update deps in basic-usage notebook #42

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
permissions:
contents: read
jobs:
deps:
name: Dependencies
runs-on: ubuntu-22.04
env:
MIX_ENV: test
strategy:
matrix:
include:
- pair:
elixir: 1.15.7
otp: 25.3
- pair:
elixir: 1.16.0
otp: 26.0
lint: lint
steps:
- uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}
- uses: actions/cache@v2
id: mix-cache
with:
path: |
deps
_build
priv/plts
key: ${{ runner.os }}-mix-${{matrix.pair.elixir}}-${{matrix.pair.otp}}-${{ hashFiles('**/mix.lock') }}
- name: Install Dependencies
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
static_code_analysis:
name: Static Code Analysis
needs: deps
runs-on: ubuntu-22.04
env:
MIX_ENV: test
strategy:
matrix:
include:
- pair:
elixir: 1.15.7
otp: 25.3
- pair:
elixir: 1.16.0
otp: 26.0
lint: lint
steps:
- uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}
- uses: actions/cache@v2
id: mix-cache
with:
path: |
deps
_build
priv/plts
key: ${{ runner.os }}-mix-${{matrix.pair.elixir}}-${{matrix.pair.otp}}-${{ hashFiles('**/mix.lock') }}
- run: mix format --check-formatted
if: ${{ matrix.lint }}
- run: mix deps.unlock --check-unused
if: ${{ matrix.lint }}
- run: mix credo
if: ${{ matrix.lint }}
- run: mix dialyzer --no-check --ignore-exit-status
if: ${{ matrix.lint }}
unit_tests:
needs: deps
runs-on: ubuntu-22.04
env:
MIX_ENV: test
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: 1.15.7
otp: 25.3
- pair:
elixir: 1.16.0
otp: 26.0
lint: lint
steps:
- uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}
- uses: actions/cache@v2
id: mix-cache
with:
path: |
deps
_build
priv/plts
key: ${{ runner.os }}-mix-${{matrix.pair.elixir}}-${{matrix.pair.otp}}-${{ hashFiles('**/mix.lock') }}
- run: mix test --trace --slowest 10