chore: sync files with beam-community/common-config #31
Workflow file for this run
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: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
mix_test: | |
name: mix test (Elixir ${{matrix.elixir}} | OTP ${{matrix.otp}}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- elixir: 1.9.x | |
otp: 20 | |
os: ubuntu-20.04 | |
- elixir: 1.10.x | |
otp: 21 | |
os: ubuntu-20.04 | |
- elixir: 1.11.x | |
otp: 22 | |
os: ubuntu-20.04 | |
- elixir: 1.11.x | |
otp: 23 | |
os: ubuntu-20.04 | |
- elixir: 1.12.x | |
otp: 23 | |
os: ubuntu-20.04 | |
- elixir: 1.13.x | |
otp: 24 | |
os: ubuntu-20.04 | |
- elixir: 1.14.x | |
otp: 25 | |
os: ubuntu-latest | |
env: | |
MIX_ENV: test | |
steps: | |
- uses: actions/checkout@v2 | |
- 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 | |
if: matrix.warnings_as_errors | |
env: | |
CC: gcc-10 | |
CXX: g++-10 | |
- run: mix test | |
env: | |
CC: gcc-10 | |
CXX: g++-10 |