Update car req2 #17
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: Elixir CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
merge_group: | |
types: [checks_requested] | |
permissions: | |
contents: read | |
jobs: | |
build_OS_16_26: | |
name: Build and test v1.16 OTP26 | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:12 | |
ports: ['5432:5432'] | |
env: | |
POSTGRES_HOST_AUTH_METHOD: trust | |
POSTGRES_PASSWORD: "" | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 10s --health-retries 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Runs OpenSearch | |
uses: esmarkowski/[email protected] | |
with: | |
version: 2.15.0 | |
security-disabled: true | |
- name: Set up Elixir v1.16 OTP26 | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: "1.16.X" # Define the elixir version [required] | |
otp-version: "26.X" # Define the OTP version [required] | |
- name: Install dependencies | |
run: mix deps.get | |
# Step: Compile the project treating any warnings as errors. | |
- name: Compiles without warnings | |
run: mix compile --force --warnings-as-errors | |
# Step: Check that the checked in code has already been formatted. | |
- name: Check Formatting | |
run: mix format --check-formatted | |
- name: Run tests v1.16 OTP26 | |
env: | |
DATABASE_HOST: localhost | |
MIX_ENV: test | |
run: mix test | |
build_OS_17_26: | |
name: Build and test v1.17 OTP26 | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:12 | |
ports: ['5432:5432'] | |
env: | |
POSTGRES_HOST_AUTH_METHOD: trust | |
POSTGRES_PASSWORD: "" | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 10s --health-retries 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Runs OpenSearch | |
uses: esmarkowski/[email protected] | |
with: | |
version: 2.15.0 | |
security-disabled: true | |
- name: Set up Elixir v1.17 OTP26 | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: "1.17.X" # Define the elixir version [required] | |
otp-version: "26.X" # Define the OTP version [required] | |
- name: Install dependencies | |
run: mix deps.get | |
- name: Run tests v1.17 OTP26 | |
env: | |
DATABASE_HOST: localhost | |
MIX_ENV: test | |
run: mix test | |
build_ES_16_26: | |
name: Build and test v1.16 OTP26 | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:12 | |
ports: ['5432:5432'] | |
env: | |
POSTGRES_HOST_AUTH_METHOD: trust | |
POSTGRES_PASSWORD: "" | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 10s --health-retries 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Runs Elasticsearch | |
uses: elastic/elastic-github-actions/elasticsearch@master | |
with: | |
stack-version: 7.17.24 | |
- name: Set up Elixir v1.16 OTP26 | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: "1.16.X" # Define the elixir version [required] | |
otp-version: "26.X" # Define the OTP version [required] | |
- name: Install dependencies | |
run: mix deps.get | |
- name: Run tests v1.17 OTP26 | |
env: | |
DATABASE_HOST: localhost | |
MIX_ENV: test | |
run: mix test | |
build_ES_17_26: | |
name: Build and test v1.17 OTP26 | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:12 | |
ports: ['5432:5432'] | |
env: | |
POSTGRES_HOST_AUTH_METHOD: trust | |
POSTGRES_PASSWORD: "" | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 10s --health-retries 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Runs Elasticsearch | |
uses: elastic/elastic-github-actions/elasticsearch@master | |
with: | |
stack-version: 7.17.24 | |
# - name: Runs OpenSearch | |
# uses: esmarkowski/[email protected] | |
# with: | |
# version: 2.15.0 | |
# security-disabled: true | |
- name: Set up Elixir v1.17 OTP26 | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: "1.17.X" # Define the elixir version [required] | |
otp-version: "26.X" # Define the OTP version [required] | |
- name: Install dependencies | |
run: mix deps.get | |
- name: Run tests v1.17 OTP26 | |
env: | |
DATABASE_HOST: localhost | |
MIX_ENV: test | |
run: mix test | |
# build1: | |
# name: Build and test v1.16 OTP27 | |
# runs-on: ubuntu-latest | |
# services: | |
# postgres: | |
# image: postgres:12 | |
# ports: ['5432:5432'] | |
# env: | |
# POSTGRES_HOST_AUTH_METHOD: trust | |
# POSTGRES_PASSWORD: "" | |
# options: --health-cmd pg_isready --health-interval 10s --health-timeout 10s --health-retries 5 | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: Runs OpenSearch | |
# uses: esmarkowski/[email protected] | |
# with: | |
# version: 2.15.0 | |
# security-disabled: true | |
# - name: Set up Elixir v1.16 OTP27 | |
# uses: erlef/setup-beam@v1 | |
# with: | |
# elixir-version: "1.16.X" # Define the elixir version [required] | |
# otp-version: "27.X" # Define the OTP version [required] | |
# - name: Install dependencies | |
# run: mix deps.get | |
# - name: Run tests v1.16 OTP27 | |
# env: | |
# DATABASE_HOST: localhost | |
# MIX_ENV: test | |
# run: mix test | |
# build3: | |
# name: Build and test v1.17 OTP27 | |
# runs-on: ubuntu-latest | |
# services: | |
# postgres: | |
# image: postgres:12 | |
# ports: ['5432:5432'] | |
# env: | |
# POSTGRES_HOST_AUTH_METHOD: trust | |
# POSTGRES_PASSWORD: "" | |
# options: --health-cmd pg_isready --health-interval 10s --health-timeout 10s --health-retries 5 | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: Runs OpenSearch | |
# uses: esmarkowski/[email protected] | |
# with: | |
# version: 2.15.0 | |
# security-disabled: true | |
# - name: Set up Elixir v1.17 OTP27 | |
# uses: erlef/setup-beam@v1 | |
# with: | |
# elixir-version: "1.17.X" # Define the elixir version [required] | |
# otp-version: "27.X" # Define the OTP version [required] | |
# - name: Install dependencies | |
# run: mix deps.get | |
# - name: Run tests v1.17 OTP27 | |
# env: | |
# DATABASE_HOST: localhost | |
# MIX_ENV: test | |
# run: mix test |