Adds makefile recipe to psql into one of a composed databases #1385
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: Erlang CI Checks | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| - 'epic/**' | |
| 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 | |
| uses: actions/checkout@v4 | |
| - 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 | |
| uses: valitydev/erlang-workflows/.github/workflows/erlang-parallel-build.yml@v1.0.18 | |
| 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 | |
| use-coveralls: true | |
| cache-version: v7 | |
| upload-coverage: false |