Skip to content

chore: use erlef actions #181

chore: use erlef actions

chore: use erlef actions #181

Workflow file for this run

name: Continuous Integration
on:
pull_request:
types: [opened, reopened, synchronize]
push:
branches:
- master
jobs:
job1:
runs-on: ubuntu-latest
outputs:
elixir: ${{ steps.set-matrix.outputs.elixir }}
steps:
- id: set-matrix
run: |
$(cat <<EOF
{
"include": [
{
"otp": "21.3",
"elixir": "1.8.1"
},
{
"otp": "22.0",
"elixir": "1.9.0"
}
]
}
EOF) >> $GITHUB_ENV
job2:
needs: job1
runs-on: ubuntu-latest
strategy:
matrix: ${{ fromJSON(needs.job1.outputs.elixir) }}
name: Elixir ${{ matrix.elixir }} with OTP ${{ matrix.otp }}
steps:
- run: echo "Matrix - Elixir ${{ matrix.elixir }}, OTP ${{ matrix.otp }}"
# VersionMatrix:
# runs-on: ubuntu-latest
# outputs:
# elixir: ${{ steps.set-matrix.outputs.elixir }}
# steps:
# - name: Set
# id: set-matrix
# run: echo 'elixir=[{"version":"1.10.4","otp":"23.0"},{"version":"1.11.2","otp":"23.0"}]' >> "$GITHUB_OUTPUT"
# TestingMatrix:
# runs-on: ubuntu-latest
# needs: VersionMatrix
# strategy:
# matrix: ${{ fromJson(needs.VersionMatrix.outputs.elixir) }}
# # name: Elixir ${{ matrix.version }} with OTP ${{ matrix.otp }}
# steps:
# - name: echo
# env:
# MATRIX: ${{ needs.VersionMatrix.outputs.elixir }}
# # run: echo "${{ matrix.otp }} ${{ matrix.version }}"
# run: echo $MATRIX
Test:
runs-on: ubuntu-latest
env:
MIX_ENV: test
steps:
- name: Checkout Code
uses: actions/checkout@v1
- name: Set up Elixir
id: beam
uses: erlef/setup-beam@v1
with:
version-file: .tool-versions
version-type: strict
- name: Install Dependencies
uses: erlef/gh-actions/preview/mix-deps-get@main
with:
elixir-version: ${{ steps.beam.outputs.elixir-version }}
erlang-version: ${{ steps.beam.outputs.otp-version }}
- name: Update SSL Verify Fun
run: |
mix deps.update ssl_verify_fun
- name: Run Tests
run: mix test
Linting:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v1
- name: Set up Elixir
id: beam
uses: erlef/setup-beam@v1
with:
version-file: .tool-versions
version-type: strict
- name: Install Dependencies
uses: erlef/gh-actions/preview/mix-deps-get@main
with:
elixir-version: ${{ steps.beam.outputs.elixir-version }}
erlang-version: ${{ steps.beam.outputs.otp-version }}
- name: Run Formatter
run: mix format --check-formatted
- name: Run Credo
run: mix credo