Main client module, with additional features #73
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: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "lib/**" | |
- "mix.exs" | |
- "mix.lock" | |
- "test/**" | |
- ".github/workflows/ci.yaml" | |
push: | |
branches: | |
- main | |
paths: | |
- "lib/**" | |
- "mix.exs" | |
- "mix.lock" | |
- ".github/workflows/ci.yaml" | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: "26" | |
elixir-version: "1.15" | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: | | |
mix local.rebar --force | |
mix local.hex --force | |
mix deps.get | |
mix deps.compile --skip-umbrella-children --skip-local-deps | |
- name: Build docs | |
run: mix docs | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: ["3_13", "3_12", "3_11"] | |
elixir: ["1.15", "1.16"] | |
otp: ["26"] | |
steps: | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{ matrix.otp }} | |
elixir-version: ${{ matrix.elixir }} | |
- uses: actions/checkout@v3 | |
- uses: hoverkraft-tech/[email protected] | |
with: | |
compose-file: "./services/docker-compose.yaml" | |
services: "rabbitmq_stream_${{ matrix.version }}" | |
- name: Wait until RabbitMQ is Up | |
run: sleep 10s | |
shell: bash | |
- name: Create 'invoices' SuperStream | |
run: docker exec rabbitmq_stream rabbitmq-streams add_super_stream invoices --partitions 3 | |
- name: Install Dependencies | |
run: | | |
mix local.rebar --force | |
mix local.hex --force | |
mix deps.unlock --all | |
mix deps.get | |
mix deps.compile | |
- name: Compile app | |
run: mix compile | |
- name: Run tests | |
run: mix test --exclude test --include v${{ matrix.version }} | |
test-clustered: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: ["3_13"] | |
elixir: ["1.15", "1.16"] | |
otp: ["26"] | |
steps: | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{ matrix.otp }} | |
elixir-version: ${{ matrix.elixir }} | |
- uses: actions/checkout@v3 | |
- uses: hoverkraft-tech/[email protected] | |
with: | |
compose-file: "./services/cluster/docker-compose.yaml" | |
- name: Wait util RabbitMQ is Up | |
run: sleep 20s | |
shell: bash | |
- name: Create 'invoices' SuperStream | |
run: docker exec rabbitmq1 rabbitmq-streams add_super_stream invoices --partitions 3 | |
- name: Install Dependencies | |
run: | | |
mix local.rebar --force | |
mix local.hex --force | |
mix deps.unlock --all | |
mix deps.get | |
mix deps.compile | |
- name: Compile app | |
run: mix compile | |
- name: Run tests | |
run: mix test --exclude test --include v${{ matrix.version }} |