Add docs, specs, linter, elvis, and CI #1
This file contains hidden or 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: ci | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- "*" | |
workflow_dispatch: {} | |
jobs: | |
test: | |
name: OTP ${{matrix.otp}} | |
runs-on: 'ubuntu-24.04' | |
strategy: | |
matrix: | |
otp: ['27', '26', '25'] | |
rebar3: ['3.24.0'] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
rebar3-version: ${{matrix.rebar3}} | |
- run: rebar3 compile | |
- run: rebar3 xref | |
- run: rebar3 lint | |
- run: rebar3 ex_doc | |
- run: rebar3 fmt --check | |
if: ${{ matrix.otp == '27' }} | |
- run: rebar3 dialyzer | |
if: ${{ matrix.otp == '27' }} | |
- run: rebar3 eunit | |
- run: rebar3 ct | |
- run: rebar3 do cover, covertool generate | |
- name: install valgrind | |
if: ${{ matrix.otp == '27' }} | |
timeout-minutes: 10 | |
run: | | |
sudo apt-get -qq update | |
sudo apt-get -qq install -y build-essential git-core perl valgrind | |
- run: make -C c_src memory-test | |
if: ${{ matrix.otp == '27' }} | |
- name: Upload code coverage | |
uses: codecov/codecov-action@v5 | |
with: | |
files: _build/test/covertool/*.covertool.xml | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
verbose: true |