Describe match_data, match_val and contains_val #148
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: Test | |
| on: [push, pull_request] | |
| jobs: | |
| common-test: | |
| name: Run Common Test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| otp: [21, 22, 23, 24, 25, 26, 27, 28] | |
| container: | |
| image: erlang:${{ matrix.otp }}-alpine | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run Common Test | |
| run: | | |
| rebar3 xref | |
| rebar3 dialyzer | |
| rebar3 ct |