Make debug logging configurable #55
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: Build | |
on: | |
pull_request: | |
branches: | |
- "master" | |
push: | |
branches: | |
- "master" | |
jobs: | |
format: | |
name: Check formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: "25.3" | |
elixir-version: "1.14.4" | |
- run: mix format --check-formatted | |
test: | |
name: Test on Elixir ${{ matrix.elixir }} (OTP ${{ matrix.otp }}) | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
otp: ["23.3.4.18", "24.3.4.10"] | |
elixir: ["1.12.3", "1.13.4", "1.14.4"] | |
include: | |
# Only Elixir 1.15 supports OTP 26 | |
- otp: "26.0.2" | |
elixir: "1.15.4" | |
# Only Elixir 1.14 supports OTP 25 | |
- otp: "25.3" | |
elixir: "1.14.4" | |
# We need to test Elixir 1.11 for backwards compatibility | |
- otp: "22.3.4.26" | |
elixir: "1.11.4" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{ matrix.otp }} | |
elixir-version: ${{ matrix.elixir }} | |
- uses: actions/cache@v3 | |
name: Cache dependencies | |
with: | |
path: | | |
deps | |
key: deps-${{ hashFiles('mix.lock') }} | |
restore-keys: | | |
deps-${{ hashFiles('mix.lock') }} | |
deps- | |
- run: mix deps.get | |
- uses: actions/cache@v3 | |
name: Cache build | |
with: | |
path: | | |
_build | |
key: build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('mix.lock') }} | |
restore-keys: | | |
build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('mix.lock') }} | |
build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}- | |
- run: mix test |