-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
193 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,10 @@ on: | |
# Trigger the workflow on any pull request | ||
pull_request: | ||
|
||
env: | ||
MIX_ENV: test | ||
ELIXIR_VERSION_SPEC: "1.15.7" | ||
OTP_VERSION_SPEC: "26.0.2" | ||
permissions: read-all | ||
|
||
jobs: | ||
|
@@ -37,3 +41,28 @@ jobs: | |
with: | ||
file: ./coverage.lcov | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
credo: | ||
name: Credo | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./backend | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Set up Elixir | ||
uses: erlef/[email protected] | ||
with: | ||
elixir-version: ${{ env.ELIXIR_VERSION_SPEC }} | ||
otp-version: ${{ env.OTP_VERSION_SPEC }} | ||
- name: Install dependencies | ||
run: mix deps.get | ||
- name: Compile dependencies | ||
run: mix deps.compile | ||
- name: Run tests | ||
run: mix coveralls.json | ||
- uses: codecov/codecov-action@v4 | ||
with: | ||
fail_ci_if_error: true | ||
files: coverage/excoveralls.json | ||
token: ${{ secrets.CODECOV_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
name: Elixir CI | ||
|
||
on: [push, pull_request] | ||
env: | ||
MIX_ENV: test | ||
ELIXIR_VERSION_SPEC: "1.15.7" | ||
OTP_VERSION_SPEC: "26.0.2" | ||
|
||
jobs: | ||
compile: | ||
name: Compile | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./backend | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Set up Elixir | ||
uses: erlef/[email protected] | ||
with: | ||
elixir-version: ${{ env.ELIXIR_VERSION_SPEC }} | ||
otp-version: ${{ env.OTP_VERSION_SPEC }} | ||
- name: Install dependencies | ||
run: mix deps.get | ||
- name: Compile dependencies | ||
run: mix deps.compile | ||
- name: Compile | ||
run: mix compile --warnings-as-errors | ||
|
||
test: | ||
name: Test | ||
runs-on: ubuntu-22.04 | ||
defaults: | ||
run: | ||
working-directory: ./backend | ||
|
||
|
||
services: | ||
invoices_control_db_test: | ||
image: postgres:latest | ||
ports: ['5432:5432'] | ||
env: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_HOST_AUTH_METHOD: 'trust' | ||
POSTGRES_DB: invoices_control_test | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
env: | ||
MIX_ENV: test | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Set up Elixir | ||
uses: erlef/[email protected] | ||
with: | ||
elixir-version: ${{ env.ELIXIR_VERSION_SPEC }} | ||
otp-version: ${{ env.OTP_VERSION_SPEC }} | ||
- name: Install dependencies | ||
run: mix deps.get | ||
- name: Compile dependencies | ||
run: mix deps.compile | ||
- name: Setup database | ||
env: | ||
MIX_ENV: test | ||
PGHOST: localhost | ||
POSTGRES_PORT: 5432 | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
run: | ||
mix ecto.drop | ||
mix ecto.create | ||
mix ecto.migrate | ||
- name: Run tests | ||
env: | ||
MIX_ENV: test | ||
PGHOST: localhost | ||
POSTGRES_PORT: 5432 | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
run: | ||
mix test | ||
|
||
check-formatted: | ||
name: Check Formatted | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./backend | ||
|
||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Set up Elixir | ||
uses: erlef/[email protected] | ||
with: | ||
elixir-version: ${{ env.ELIXIR_VERSION_SPEC }} | ||
otp-version: ${{ env.OTP_VERSION_SPEC }} | ||
- name: Install dependencies | ||
run: mix deps.get | ||
- name: Compile dependencies | ||
run: mix deps.compile | ||
- name: Check formatted | ||
run: mix format --check-formatted | ||
|
||
credo: | ||
name: Credo | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./backend | ||
|
||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Set up Elixir | ||
uses: erlef/[email protected] | ||
with: | ||
elixir-version: ${{ env.ELIXIR_VERSION_SPEC }} | ||
otp-version: ${{ env.OTP_VERSION_SPEC }} | ||
- name: Install dependencies | ||
run: mix deps.get | ||
- name: Compile dependencies | ||
run: mix deps.compile | ||
- name: Run credo | ||
run: mix credo --strict |
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
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
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
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
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
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
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
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