Create main.yml #2
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" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
otp: [24, 25, 26] | |
rebar3: [3.22.1] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install Erlang OTP | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
rebar3-version: ${{matrix.rebar3}} | |
- name: Check formatting | |
run: rebar3 fmt -c | |
- name: Compile | |
run: rebar3 compile | |
- name: Run dialyzer | |
run: rebar3 dialyzer | |
- name: Run tests | |
run: rebar3 ct -c | |
- name: Generate coverage reports | |
run: rebar3 covertool generate | |
- uses: codecov/codecov-action@v3 | |
with: | |
file: _build/test/covertool/spinlock.covertool.xml |