Add initial Test of queue query options #61
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: Erlang CI | |
| on: | |
| push: | |
| branches: | |
| - openriak-3.4 | |
| pull_request: | |
| branches: | |
| - openriak-3.4 | |
| jobs: | |
| build: | |
| name: Test on ${{ matrix.os }} with OTP ${{ matrix.otp }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| otp: [24, 26] | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: lukka/get-cmake@latest | |
| - uses: actions/checkout@v4 | |
| - name: Install Erlang/OTP | |
| uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: ${{ matrix.otp }} | |
| - name: Compile | |
| run: make all | |
| - name: Run xref and dialyzer | |
| run: ./rebar3 as check do xref, dialyzer |