Fix issue templates #79
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: CI | |
"on": | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
linux: | |
name: OTP ${{ matrix.otp_version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
otp_version: [27] | |
os: [ubuntu-latest] | |
container: | |
image: erlang:${{ matrix.otp_version }} | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Compile | |
run: rebar3 compile | |
- name: Run tests | |
run: rebar3 do ct, eunit | |
# FIXME: Resolve dialyzer warnings and errors. | |
# - name: Run dialyzer | |
# run: rebar3 dialyzer |