mark start_client/1 and terminate_client/1 for external use #41
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: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review] | |
env: | |
COMMIT_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} | |
BRANCH: ${{ github.event_name == 'pull_request' && format('refs/heads/{0}', github.event.pull_request.head.ref) || github.ref }} | |
jobs: | |
test: | |
# This condition ensures that this job will not run on pull requests in draft state | |
if: github.event_name != 'pull_request' || !github.event.pull_request.draft | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04] | |
otp: [23, 24, 25, 26] | |
elixir: [1.13, 1.14, 1.15, 1.16.0-rc.0] | |
exclude: | |
- otp: 26 | |
elixir: 1.13 | |
- otp: 26 | |
elixir: 1.14 | |
- otp: 23 | |
elixir: 1.15 | |
- otp: 23 | |
elixir: 1.16.0-rc.0 | |
- otp: 23 | |
os: ubuntu-22.04 | |
- otp: 24 | |
os: ubuntu-20.04 | |
- otp: 25 | |
os: ubuntu-20.04 | |
- otp: 26 | |
os: ubuntu-20.04 | |
runs-on: ${{matrix.os}} | |
name: test|OTP ${{matrix.otp}}|Elixir ${{matrix.elixir}}|${{matrix.os}} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{env.BRANCH}} | |
- uses: erlef/[email protected] | |
with: | |
otp-version: ${{matrix.otp}} | |
elixir-version: ${{matrix.elixir}} | |
- name: Disable compile warnings | |
run: echo "::remove-matcher owner=elixir-mixCompileWarning::" | |
- name: Retrieve mix dependencies cache | |
uses: actions/cache@v3 | |
id: mix-cache | |
with: | |
path: | | |
deps | |
_build | |
key: test-${{ matrix.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} | |
restore-keys: test-${{ matrix.os }}-${{ matrix.otp }}-${{ matrix.elixir }}- | |
- name: Install Dependencies | |
if: steps.mix-cache.outputs.cache-hit != 'true' | |
run: | | |
mix deps.get | |
mix deps.compile | |
- name: Compile project | |
run: mix compile | |
- name: Compile project (:test) | |
run: MIX_ENV=test mix compile | |
- name: Compile project (:property) | |
run: MIX_ENV=property mix compile | |
- name: Run property-based tests | |
run: mix test.property --cover --export-coverage property-coverage | |
- name: Run tests | |
run: mix coveralls.github --import-cover cover | |
lint: | |
# This condition ensures that this job will not run on pull requests in draft state | |
if: github.event_name != 'pull_request' || !github.event.pull_request.draft | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04] | |
otp: [26] | |
elixir: [1.15] | |
runs-on: ${{matrix.os}} | |
name: lint|OTP ${{matrix.otp}}|Elixir ${{matrix.elixir}}|${{matrix.os}} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{env.BRANCH}} | |
- uses: erlef/[email protected] | |
with: | |
otp-version: ${{matrix.otp}} | |
elixir-version: ${{matrix.elixir}} | |
- name: Disable compile warnings | |
run: echo "::remove-matcher owner=elixir-mixCompileWarning::" | |
- name: Retrieve mix dependencies cache | |
uses: actions/cache@v3 | |
id: mix-cache | |
with: | |
path: | | |
deps | |
_build | |
key: test-${{ matrix.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} | |
restore-keys: test-${{ matrix.os }}-${{ matrix.otp }}-${{ matrix.elixir }}- | |
- name: Install Dependencies | |
if: steps.mix-cache.outputs.cache-hit != 'true' | |
run: | | |
mix deps.get | |
mix deps.compile | |
- name: Compile project | |
run: mix compile --warnings-as-errors | |
- name: Check for unused dependencies | |
run: mix deps.unlock --check-unused | |
- name: Check formatting | |
run: mix format --check-formatted | |
- name: Check style | |
run: mix credo --strict | |
- name: Check compilation cycles | |
run: mix xref graph --format cycles --fail-above 0 | |
- name: Check unused code | |
run: mix compile.unused --severity warning --warnings-as-errors | |
- name: Retrieve PLT cache | |
uses: actions/cache@v3 | |
id: plt-cache | |
with: | |
path: priv/plts | |
key: ${{ matrix.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-plts-${{ hashFiles('**/mix.lock') }} | |
restore-keys: ${{ matrix.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-plts- | |
- name: Create PLTs | |
run: | | |
mkdir -p priv/plts | |
mix dialyzer --plt | |
- name: Run dialyzer | |
run: mix dialyzer --format github |