Skip to content

Bump mock from 0.3.7 to 0.3.8 #67

Bump mock from 0.3.7 to 0.3.8

Bump mock from 0.3.7 to 0.3.8 #67

Workflow file for this run

# base configuration pulled from:
# https://github.com/dashbitco/broadway/blob/master/.github/workflows/ci.yml
name: CI
on:
pull_request:
push:
branches:
- "*"
jobs:
lint:
runs-on: ${{ matrix.os }}
env:
MIX_ENV: dev
name: Lint
strategy:
matrix:
os: ["ubuntu-20.04"]
elixir: ["1.14"]
otp: ["25"]
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- uses: actions/cache@v3
with:
path: deps
key: ${{ matrix.os }}-otp_${{ matrix.otp }}-elixir_${{ matrix.elixir }}-mix_${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ matrix.os }}-otp_${{ matrix.otp }}-elixir_${{ matrix.elixir }}-mix_
- run: mix deps.get
- run: mix deps.compile
- run: mix format --check-formatted
- run: mix deps.unlock --check-unused
- run: mix compile --warnings-as-errors
test:
runs-on: ${{ matrix.os }}
env:
MIX_ENV: test
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
name: Test Elixir ${{ matrix.elixir }}, OTP ${{ matrix.otp }}, OS ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-20.04"]
elixir: ["1.14", "1.13", "1.12"]
otp: ["25", "24", "23"]
exclude:
- elixir: "1.12"
otp: "25"
include:
- elixir: "1.14"
opt: "25"
coverage: coverage
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get --only test
- run: mix deps.compile
- run: mix test
- run: mix coveralls.github
if: ${{matrix.coverage}}