Hide API Reference from hexdocs.pm #92
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: [push, pull_request] | |
jobs: | |
ci: | |
name: Run checks and tests over ${{matrix.otp_vsn}} | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
otp_vsn: ['24', '25', '26'] | |
rebar3_vsn: ['3.22'] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: erlef/setup-beam@v1 | |
id: setup-beam | |
with: | |
otp-version: ${{matrix.otp_vsn}} | |
rebar3-version: ${{matrix.rebar3_vsn}} | |
- name: Restore _build | |
uses: actions/cache@v3 | |
with: | |
path: _build | |
key: "_build-cache-for\ | |
-os-${{runner.os}}\ | |
-otp-${{steps.setup-beam.outputs.otp-version}}\ | |
-rebar3-${{steps.setup-beam.outputs.rebar3-version}}\ | |
-hash-${{hashFiles('rebar.lock')}}" | |
- name: Restore rebar3's cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/rebar3 | |
key: "rebar3-cache-for\ | |
-os-${{runner.os}}\ | |
-otp-${{steps.setup-beam.outputs.otp-version}}\ | |
-rebar3-${{steps.setup-beam.outputs.rebar3-version}}\ | |
-hash-${{hashFiles('rebar.lock')}}" | |
- name: Format check | |
run: rebar3 format --verify | |
- shell: bash | |
run: rebar3 test | |
- shell: bash | |
run: rebar3 escriptize && _build/default/bin/elvis rock | |
- shell: bash | |
run: rebar3 as test test |