Development - [Chore]: (deps-dev): Bump credo from 1.7.6 to 1.7.10 #112
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: development | |
run-name: Development - ${{ github.event.pull_request.title || github.event.head_commit.message || github.ref }} | |
on: | |
push: | |
branches: | |
- development | |
pull_request: | |
branches: | |
- development | |
jobs: | |
dependencies: | |
name: Install Dependencies Elixir ${{ matrix.elixir }} OTP ${{ matrix.otp }} - ${{ matrix.os }} | |
uses: ./.github/workflows/dependencies-reusable.yml | |
with: | |
elixir: ${{ matrix.elixir }} | |
otp: ${{ matrix.otp }} | |
os: ${{ matrix.os }} | |
strategy: | |
matrix: | |
elixir: [1.14.3] | |
otp: [25.3] | |
os: [ubuntu-latest] | |
linting: | |
name: Linting Elixir ${{ matrix.elixir }} OTP ${{ matrix.otp }} - ${{ matrix.os }} | |
uses: ./.github/workflows/linting-reusable.yml | |
with: | |
elixir: ${{ matrix.elixir }} | |
otp: ${{ matrix.otp }} | |
os: ${{ matrix.os }} | |
needs: | |
- dependencies | |
strategy: | |
matrix: | |
elixir: [1.14.3] | |
otp: [25.3] | |
os: [ubuntu-latest] | |
test: | |
name: Testing Elixir ${{ matrix.elixir }} OTP ${{ matrix.otp }} - ${{ matrix.os }} | |
uses: ./.github/workflows/unit-test-reusable.yml | |
with: | |
elixir: ${{ matrix.elixir }} | |
otp: ${{ matrix.otp }} | |
os: ${{ matrix.os }} | |
needs: | |
- dependencies | |
strategy: | |
matrix: | |
elixir: [1.14.3] | |
otp: [25.3] | |
os: [ubuntu-latest] | |
analysis: | |
name: Analyse Elixir ${{ matrix.elixir }} OTP ${{ matrix.otp }} - ${{ matrix.os }} | |
uses: ./.github/workflows/static-code-analysis-reusable.yml | |
with: | |
elixir: ${{ matrix.elixir }} | |
otp: ${{ matrix.otp }} | |
os: ${{ matrix.os }} | |
needs: | |
- dependencies | |
strategy: | |
matrix: | |
elixir: [1.14.3] | |
otp: [25.3] | |
os: [ubuntu-latest] |