-
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.
build(CI/CD): Added elixir_ci.yml 'Build and test' job for Github Act…
…ions
- Loading branch information
1 parent
77f89e6
commit 8f92aa5
Showing
1 changed file
with
65 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: Elixir CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- "release/*" | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
services: | ||
postgres: | ||
image: postgres:13 | ||
env: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_DB: my_app_test | ||
ports: | ||
- 5432:5432 | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
env: | ||
MIX_ENV: test | ||
DATABASE_URL: postgres://postgres:postgres@localhost/my_app_test | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Elixir | ||
uses: erlef/setup-elixir@v1 | ||
with: | ||
elixir-version: 1.15.7 | ||
otp-version: 26.0 | ||
|
||
- name: Install dependencies | ||
run: mix deps.get | ||
|
||
- name: Install Node.js (for assets) | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Install npm dependencies | ||
run: npm install --prefix assets | ||
|
||
- name: Compile Elixir code | ||
run: mix compile | ||
|
||
- name: Setup database | ||
run: | | ||
mix ecto.create | ||
mix ecto.migrate | ||
- name: Run tests | ||
run: mix test |