Skip to content

Badges and extractly #2

Badges and extractly

Badges and extractly #2

Workflow file for this run

name: Elixir CI
on:
pull_request:
push:
branches:
- master
jobs:
mix_test_old:
name: mix test (Elixir ${{matrix.elixir}} | OTP ${{matrix.otp}})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- elixir: 1.17.x
otp: 27
os: ubuntu-latest
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Install Dependencies
run: |
mix local.hex --force
mix local.rebar --force
mix deps.get --only test
- name: Cache build artifacts
uses: actions/cache@v3
with:
path: |
~/.hex
~/.mix
_build
key: ${{ matrix.otp }}-${{ matrix.elixir }}-build
- run: mix compile --warnings-as-errors
env:
CC: gcc-10
CXX: g++-10
- run: mix test --warnings-as-errors
if: matrix.warnings_as_errors
env:
CC: gcc-10
CXX: g++-10
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.