Work on test coverage reporting. #28
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: Test ❯ Suite | |
# Runs tests, typechecking, and linting. | |
on: | |
# Allow running from GitHub UI. | |
- workflow_dispatch | |
# Run on all pushes. | |
- push | |
env: | |
MIX_ENV: test | |
concurrency: | |
group: test-suite-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
name: Testing | |
runs-on: ${{ vars.PREFERRED_OS }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Erlang & Elixir | |
id: beam-versions | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: ${{ vars.PREFERRED_ELIXIR }} | |
otp-version: ${{ vars.PREFERRED_OTP }} | |
- name: Restore mix dependency installation cache | |
id: mix-deps-get-cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
deps | |
mix.lock | |
key: cache-${{ vars.CACHE_VERSION }}-os-${{ runner.os }}-${{ steps.beam-versions.outputs.otp-version }}-${{ steps.beam-versions.outputs.elixir-version }}-mix-deps-get-mix-exs-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.exs')) }} | |
- name: Install mix dependencies | |
if: steps.mix-deps-get-cache.outputs.cache-hit != 'true' | |
run: mix deps.get | |
- name: Restore mix dependency compilation cache | |
id: mix-deps-compile-cache | |
uses: actions/cache@v4 | |
with: | |
path: _build | |
key: cache-${{ vars.CACHE_VERSION }}-os-${{ runner.os }}-${{ steps.beam-versions.outputs.otp-version }}-${{ steps.beam-versions.outputs.elixir-version }}-mix-deps-compile-mix-lock-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
- name: Compile mix dependencies | |
if: steps.mix-deps-compile-cache.outputs.cache-hit != 'true' | |
run: mix deps.compile | |
- name: Run test suite | |
run: mix test | |
types: | |
# Skip type checking for now | |
if: ${{ !always() }} | |
name: Typechecking | |
runs-on: ${{ vars.PREFERRED_OS }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Erlang & Elixir | |
id: beam-versions | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: ${{ vars.PREFERRED_ELIXIR }} | |
otp-version: ${{ vars.PREFERRED_OTP }} | |
- name: Restore mix dependency installation cache | |
id: mix-deps-get-cache | |
uses: actions/cache@v4 | |
with: | |
path: deps | |
key: cache-${{ vars.CACHE_VERSION }}-os-${{ runner.os }}-otp-${{ steps.beam-versions.outputs.otp-version }}-elixir-${{ steps.beam-versions.outputs.elixir-version }}-mix-deps-get-mix-lock-file-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
- name: Install mix dependencies | |
if: steps.mix-deps-get-cache.outputs.cache-hit != 'true' | |
run: mix deps.get | |
- name: Restore mix dependency compilation cache | |
id: mix-deps-compile-cache | |
uses: actions/cache@v4 | |
with: | |
path: _build | |
key: cache-${{ vars.CACHE_VERSION }}-os-${{ runner.os }}-otp-${{ steps.beam-versions.outputs.otp-version }}-elixir-${{ steps.beam-versions.outputs.elixir-version }}-mix-deps-compile-mix-lock-file-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
- name: Compile mix dependencies | |
if: steps.mix-deps-compile-cache.outputs.cache-hit != 'true' | |
run: mix deps.compile | |
- name: Restore mix typecheck cache | |
id: mix-typecheck-cache | |
uses: actions/cache@v4 | |
with: | |
path: priv/plts | |
key: cache-${{ vars.CACHE_VERSION }}-os-${{ runner.os }}-otp-${{ steps.beam-versions.outputs.otp-version }}-elixir-${{ steps.beam-versions.outputs.elixir-version }}-mix-typecheck | |
- name: Setup typechecking | |
if: steps.mix-typecheck-cache.outputs.cache-hit != 'true' | |
run: mix typecheck.build-cache | |
- name: Run typecheck tasks | |
run: mix typecheck | |
lints: | |
name: Linting | |
runs-on: ${{ vars.PREFERRED_OS }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Erlang & Elixir | |
id: beam-versions | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: ${{ vars.PREFERRED_ELIXIR }} | |
otp-version: ${{ vars.PREFERRED_OTP }} | |
- name: Restore mix dependency installation cache | |
id: mix-deps-get-cache | |
uses: actions/cache@v4 | |
with: | |
path: deps | |
key: cache-${{ vars.CACHE_VERSION }}-os-${{ runner.os }}-otp-${{ steps.beam-versions.outputs.otp-version }}-elixir-${{ steps.beam-versions.outputs.elixir-version }}-mix-deps-get-mix-lock-file-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
- name: Install mix dependencies | |
if: steps.mix-deps-get-cache.outputs.cache-hit != 'true' | |
run: mix deps.get | |
- name: Restore mix dependency compilation cache | |
id: mix-deps-compile-cache | |
uses: actions/cache@v4 | |
with: | |
path: _build | |
key: cache-${{ vars.CACHE_VERSION }}-os-${{ runner.os }}-otp-${{ steps.beam-versions.outputs.otp-version }}-elixir-${{ steps.beam-versions.outputs.elixir-version }}-mix-deps-compile-mix-lock-file-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
- name: Compile mix dependencies | |
if: steps.mix-deps-compile-cache.outputs.cache-hit != 'true' | |
run: mix deps.compile | |
- name: Run linter tasks | |
run: mix lint | |
continue-on-error: true | |
results: | |
name: Test Suite Results | |
runs-on: ubuntu-20.04 | |
if: ${{ always() }} | |
needs: | |
- tests | |
- types | |
- lints | |
steps: | |
- name: Test Suite Succeeded | |
if: ${{ needs.tests.result == 'success' && needs.types.result == 'success' && needs.lints.result == 'success' }} | |
run: exit 0 | |
- name: Test Suite Failed | |
if: ${{ needs.tests.result == 'failure' || needs.types.result == 'failure' || needs.lints.result == 'failure' }} | |
run: exit 1 |