Fix updater info #325
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: grisp_connect CT | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| name: Erlang/OTP ${{matrix.otp}} / rebar3 ${{matrix.rebar3}} | |
| strategy: | |
| matrix: | |
| otp: ['28', '27'] | |
| rebar3: ['3.25.1'] | |
| steps: | |
| - uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: ${{matrix.otp}} | |
| rebar3-version: ${{matrix.rebar3}} | |
| - uses: actions/checkout@v2 | |
| - name: Prepare rebar3 | |
| run: | | |
| rebar3 update | |
| rebar3 plugins upgrade --all | |
| - name: Compiling | |
| run: | | |
| eval `ssh-agent -s` | |
| ssh-add - <<< '${{ secrets.STRITZINGER_BOT_SSH_KEY }}' | |
| rebar3 as test compile | |
| - name: Run ct | |
| run: | | |
| eval `ssh-agent -s` | |
| ssh-add - <<< '${{ secrets.STRITZINGER_BOT_SSH_KEY }}' | |
| rebar3 ct | |
| - name: Run ex_doc | |
| run: | | |
| eval `ssh-agent -s` | |
| ssh-add - <<< '${{ secrets.STRITZINGER_BOT_SSH_KEY }}' | |
| rebar3 ex_doc |