Fix luerl_new:decode returning incorrect state #113
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: Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: | |
- edited | |
- opened | |
- reopened | |
- synchronize | |
schedule: | |
- cron: "0 0 * * 0" | |
jobs: | |
older-builds: | |
name: Older Erlang/OTP ${{matrix.otp}} | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
otp: ["22", "23", "24"] | |
rebar3: ["3.14.1", "3.14.3"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
rebar3-version: ${{matrix.rebar3}} | |
- run: rebar3 do eunit, ct --cover, cover | |
newer-builds: | |
name: Newer Erlang/OTP ${{matrix.otp}} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
otp: ["25", "26", "27"] | |
rebar3: ["3.24"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
rebar3-version: ${{matrix.rebar3}} | |
- run: rebar3 do eunit, ct --cover, cover |