triggered by kuenishi #40
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: Check All | |
run-name: triggered by ${{ github.actor }} | |
on: [push, workflow_dispatch] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
strategy: | |
matrix: | |
version: [22, 23, 24, 25, 26] | |
runs-on: ubuntu-latest | |
container: | |
image: erlang:${{ matrix.version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Compile | |
run: rebar3 compile | |
- name: Test | |
run: rebar3 do eunit, proper | |
- name: Check | |
run: rebar3 do xref, dialyzer |