Erlang server: better handling of inner path #105
Workflow file for this run
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: Samples Erlang | |
on: | |
push: | |
paths: | |
- samples/server/echo_api/erlang-server/** | |
- samples/server/petstore/erlang-server/** | |
- samples/client/petstore/erlang-client/** | |
- samples/client/petstore/erlang-proper/** | |
pull_request: | |
paths: | |
- samples/server/echo_api/erlang-server/** | |
- samples/server/petstore/erlang-server/** | |
- samples/client/petstore/erlang-client/** | |
- samples/client/petstore/erlang-proper/** | |
jobs: | |
build: | |
name: Build Erlang projects | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
sample: | |
- samples/server/echo_api/erlang-server/ | |
- samples/server/petstore/erlang-server/ | |
- samples/client/petstore/erlang-client/ | |
- samples/client/petstore/erlang-proper/ | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: '27' | |
rebar3-version: '3.23.0' | |
- run: rebar3 compile | |
working-directory: ${{ matrix.sample }} |