Skip to content

Commit

Permalink
Copy-edit the CI matrix documentation
Browse files Browse the repository at this point in the history
Mostly, I just opened this up in my editor and realized that the lines
weren't wrapped at 80 characters. 😅 I took the liberty of rephrasing
some stuff to add more color, while I was in there.
  • Loading branch information
ajvondrak committed Nov 16, 2022
1 parent 49b87c1 commit 26ce90b
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,18 @@ on:
env:
MIX_ENV: ci

# The approach to the CI matrix is as following:
# * The minimum version of Elixir is the minimum supported (see https://hexdocs.pm/elixir/compatibility-and-deprecations.html)
# * Each Elixir version is paired with the lowest supported OTP version
# * The latest Elixir version is paired also with the highest supported OTP version
# The approach to the CI matrix:
#
# * In general, remote_ip only maintains support for the minimum supported
# version of Elixir, so we only need to test the versions listed in
# https://hexdocs.pm/elixir/compatibility-and-deprecations.html
#
# * To avoid combinatorial explosion of Elixir/OTP pairs, and to err on the
# side of caution, each Elixir version is paired with its lowest supported
# OTP version.
#
# * Additionally, the highest Elixir version is also paired with its highest
# supported OTP version, to cover the latest & greatest case.

jobs:
ci:
Expand Down

0 comments on commit 26ce90b

Please sign in to comment.