Merge pull request #17 from keynslug/master #81
Workflow file for this run
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, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
erlang: | |
- otp: "24" | |
rebar3: "3.20" | |
- otp: "25" | |
rebar3: "3.22" | |
- otp: "26" | |
rebar3: "3.22" | |
- otp: "27" | |
rebar3: "3.24" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Erlang/OTP | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{ matrix.erlang.otp }} | |
rebar3-version: ${{ matrix.erlang.rebar3 }} | |
- name: Run tests | |
run: make | |
- name: Archive common test results | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: CT results | |
path: _build/test/logs/** | |
retention-days: 1 |