2022-03-02 08:20:07 +00:00
|
|
|
name: Erlang CI Checks
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
pull_request:
|
|
|
|
branches: ['**']
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
setup:
|
|
|
|
name: Load .env
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
otp-version: ${{ steps.otp-version.outputs.version }}
|
|
|
|
rebar-version: ${{ steps.rebar-version.outputs.version }}
|
|
|
|
thrift-version: ${{ steps.thrift-version.outputs.version }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-04-21 11:14:53 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-03-02 08:20:07 +00:00
|
|
|
- run: grep -v '^#' .env >> $GITHUB_ENV
|
|
|
|
- id: otp-version
|
|
|
|
run: echo "::set-output name=version::$OTP_VERSION"
|
|
|
|
- id: rebar-version
|
|
|
|
run: echo "::set-output name=version::$REBAR_VERSION"
|
|
|
|
- id: thrift-version
|
|
|
|
run: echo "::set-output name=version::$THRIFT_VERSION"
|
|
|
|
|
|
|
|
run:
|
|
|
|
name: Run checks
|
|
|
|
needs: setup
|
2022-08-04 09:18:02 +00:00
|
|
|
uses: valitydev/erlang-workflows/.github/workflows/erlang-parallel-build.yml@v1.0.3
|
2022-03-02 08:20:07 +00:00
|
|
|
with:
|
|
|
|
otp-version: ${{ needs.setup.outputs.otp-version }}
|
|
|
|
rebar-version: ${{ needs.setup.outputs.rebar-version }}
|
|
|
|
use-thrift: true
|
|
|
|
thrift-version: ${{ needs.setup.outputs.thrift-version }}
|
|
|
|
run-ct-with-compose: true
|
2022-08-04 09:18:02 +00:00
|
|
|
cache-version: v2
|