Skip to content

Commit

Permalink
[Actions] Add CI with lint and test job
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyvanderaerden committed Oct 8, 2024
1 parent d093c29 commit df49cd8
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 13 deletions.
18 changes: 18 additions & 0 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Setup
description: Setup BEAM and compile cache
runs:
using: composite
steps:
- uses: erlef/setup-beam@v1
with:
otp-version: "26"
elixir-version: "1.17"

- name: Retrieve compile cache
uses: actions/cache@v4
id: mix-cache
with:
path: |
deps
_build
key: ${{ hashFiles('mix.lock', '.tool-versions') }}
73 changes: 73 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: CI

on:
push:
branches:
- main
pull_request:
workflow_dispatch:

jobs:
setup:
name: Setup
runs-on: ubuntu-latest

steps:
- name: Checkout commit
uses: actions/checkout@v4

- name: Setup Elixir and compile cache
uses: ./.github/actions/setup

- name: Compile project
if: steps.mix-cache.outputs.cache-hit != 'true'
run: |
mix deps.get
mix deps.compile
mix compile — warnings-as-errors
lint:
name: Lint
needs: setup
runs-on: ubuntu-latest

steps:
- name: Checkout commit
uses: actions/checkout@v4

- name: Setup Elixir and compile cache
uses: ./.github/actions/setup

- name: Check format
run: mix format --check-formatted

test:
name: Test
runs-on: ubuntu-latest
env:
MIX_ENV: test
services:
rabbitmq:
image: rabbitmq:latest
env:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
ports:
- 5672:5672

steps:
- name: Checkout commit
uses: actions/checkout@v4

- name: Setup Elixir and compile cache
uses: ./.github/actions/setup

- name: Retrieve test cache
uses: actions/cache@v4
id: mix-cache-test
with:
path: _build/test
key: test-${{ hashFiles('mix.lock') }}

- name: Run test
run: mix test
15 changes: 2 additions & 13 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,8 @@ jobs:
- name: Checkout commit
uses: actions/checkout@v4

- uses: erlef/setup-beam@v1
with:
otp-version: "26"
elixir-version: "1.17"

- name: Retrieve compile cache
uses: actions/cache@v4
id: mix-cache
with:
path: |
deps
_build
key: ${{ hashFiles('mix.lock') }}
- name: Setup Elixir and compile cache
uses: ./.github/actions/setup

- name: Compile project
if: steps.mix-cache.outputs.cache-hit != 'true'
Expand Down

0 comments on commit df49cd8

Please sign in to comment.